summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-12-04 18:28:38 (GMT)
committerGeorg Brandl <georg@python.org>2008-12-04 18:28:38 (GMT)
commitced51db8cfc1911dcc95c1d68baa799258068950 (patch)
tree0427d6ed8083343d9b079999ffd7ea306c8fde77 /Python
parent83ebf383d7719c89851e15da8735f45801cbb5d8 (diff)
downloadcpython-ced51db8cfc1911dcc95c1d68baa799258068950.zip
cpython-ced51db8cfc1911dcc95c1d68baa799258068950.tar.gz
cpython-ced51db8cfc1911dcc95c1d68baa799258068950.tar.bz2
#4513: remove traces of zip() docstring from when it was izip().
Diffstat (limited to 'Python')
-rw-r--r--Python/bltinmodule.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index d7f5084..546bc20 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -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)