[Python-checkins] r79615 - python/branches/py3k/Doc/library/zipfile.rst

georg.brandl python-checkins at python.org
Fri Apr 2 22:12:42 CEST 2010


Author: georg.brandl
Date: Fri Apr  2 22:12:42 2010
New Revision: 79615

Log:
#8288: fix next -> __next__.

Modified:
   python/branches/py3k/Doc/library/zipfile.rst

Modified: python/branches/py3k/Doc/library/zipfile.rst
==============================================================================
--- python/branches/py3k/Doc/library/zipfile.rst	(original)
+++ python/branches/py3k/Doc/library/zipfile.rst	Fri Apr  2 22:12:42 2010
@@ -168,7 +168,7 @@
 
       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::
 


More information about the Python-checkins mailing list