summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-04-05 07:58:21 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-04-05 07:58:21 (GMT)
commit6bccd298456f3aea7d764d6d01b0d4d2334ee5b8 (patch)
tree737e04188e95e550ed0cb1ebc821129f0e683835
parent84ec57c89b050efa9ebf74d6ecf959874d79882b (diff)
downloadcpython-6bccd298456f3aea7d764d6d01b0d4d2334ee5b8.zip
cpython-6bccd298456f3aea7d764d6d01b0d4d2334ee5b8.tar.gz
cpython-6bccd298456f3aea7d764d6d01b0d4d2334ee5b8.tar.bz2
Merged revisions 79615 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r79615 | georg.brandl | 2010-04-02 23:12:42 +0300 (Fri, 02 Apr 2010) | 1 line #8288: fix next -> __next__. ........
-rw-r--r--Doc/library/zipfile.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst
index 7e9f4d8..f414853 100644
--- a/Doc/library/zipfile.rst
+++ b/Doc/library/zipfile.rst
@@ -161,7 +161,7 @@ ZipFile Objects
The file-like object is read-only and provides the following methods:
:meth:`read`, :meth:`readline`, :meth:`readlines`, :meth:`__iter__`,
- :meth:`next`.
+ :meth:`__next__`.
.. note::