]> granicus.if.org Git - python/commitdiff
#4513: remove traces of zip() docstring from when it was izip().
authorGeorg Brandl <georg@python.org>
Thu, 4 Dec 2008 18:28:38 +0000 (18:28 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 4 Dec 2008 18:28:38 +0000 (18:28 +0000)
Python/bltinmodule.c

index d7f5084a588d53a00d78af3c517f6e25384f550f..546bc20c00782e573065ea552bc7d9d68ee7fa72 100644 (file)
@@ -2178,9 +2178,7 @@ PyDoc_STRVAR(zip_doc,
 Return a zip object whose .__next__() method returns a tuple where\n\
 the i-th element comes from the i-th iterable argument.  The .__next__()\n\
 method continues until the shortest iterable in the argument sequence\n\
-is exhausted and then it raises StopIteration.  Works like the zip()\n\
-function but consumes less memory by returning an iterator instead of\n\
-a list.");
+is exhausted and then it raises StopIteration.");
 
 PyTypeObject PyZip_Type = {
        PyVarObject_HEAD_INIT(&PyType_Type, 0)