summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-04-02 20:12:42 (GMT)
committerGeorg Brandl <georg@python.org>2010-04-02 20:12:42 (GMT)
commitcb445ef9cabb3f4467078b0895c91326a70325d7 (patch)
tree9884a0d8202f505844270ba7ee1c618e517a1c63 /Doc/library
parentdc6f2d02d9345b4e184e7cf3326ad012dec3c915 (diff)
downloadcpython-cb445ef9cabb3f4467078b0895c91326a70325d7.zip
cpython-cb445ef9cabb3f4467078b0895c91326a70325d7.tar.gz
cpython-cb445ef9cabb3f4467078b0895c91326a70325d7.tar.bz2
#8288: fix next -> __next__.
Diffstat (limited to 'Doc/library')
-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 19e4156..ee46648 100644
--- a/Doc/library/zipfile.rst
+++ b/Doc/library/zipfile.rst
@@ -168,7 +168,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::