[Python-checkins] r78465 - python/trunk/Doc/library/collections.rst

ezio.melotti python-checkins at python.org
Sat Feb 27 00:27:06 CET 2010


Author: ezio.melotti
Date: Sat Feb 27 00:27:06 2010
New Revision: 78465

Log:
typo: __next__ -> next

Modified:
   python/trunk/Doc/library/collections.rst

Modified: python/trunk/Doc/library/collections.rst
==============================================================================
--- python/trunk/Doc/library/collections.rst	(original)
+++ python/trunk/Doc/library/collections.rst	Sat Feb 27 00:27:06 2010
@@ -52,7 +52,7 @@
 :class:`Container`                                ``__contains__``
 :class:`Hashable`                                 ``__hash__``
 :class:`Iterable`                                 ``__iter__``
-:class:`Iterator`          :class:`Iterable`      ``__next__``            ``__iter__``
+:class:`Iterator`          :class:`Iterable`      ``next``                ``__iter__``
 :class:`Sized`                                    ``__len__``
 :class:`Callable`                                 ``__call__``
 


More information about the Python-checkins mailing list