diff options
author | Georg Brandl <georg@python.org> | 2010-04-02 20:12:42 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-04-02 20:12:42 (GMT) |
commit | cb445ef9cabb3f4467078b0895c91326a70325d7 (patch) | |
tree | 9884a0d8202f505844270ba7ee1c618e517a1c63 /Doc/library | |
parent | dc6f2d02d9345b4e184e7cf3326ad012dec3c915 (diff) | |
download | cpython-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.rst | 2 |
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:: |