[Python-checkins] r78466 - in python/branches/release26-maint: Doc/library/collections.rst

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


Author: ezio.melotti
Date: Sat Feb 27 00:29:38 2010
New Revision: 78466

Log:
Merged revisions 78465 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78465 | ezio.melotti | 2010-02-27 01:27:06 +0200 (Sat, 27 Feb 2010) | 1 line
  
  typo: __next__ -> next
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Doc/library/collections.rst

Modified: python/branches/release26-maint/Doc/library/collections.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/collections.rst	(original)
+++ python/branches/release26-maint/Doc/library/collections.rst	Sat Feb 27 00:29:38 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