]> granicus.if.org Git - python/commitdiff
Merged revisions 78465 via svnmerge from
authorEzio Melotti <ezio.melotti@gmail.com>
Fri, 26 Feb 2010 23:29:38 +0000 (23:29 +0000)
committerEzio Melotti <ezio.melotti@gmail.com>
Fri, 26 Feb 2010 23:29:38 +0000 (23:29 +0000)
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
........

Doc/library/collections.rst

index 459afa979a673c3d594651391638cedc364d826a..117059ac0b208fcbee58e6746db757099c07def1 100644 (file)
@@ -52,7 +52,7 @@ ABC                        Inherits               Abstract Methods        Mixin
 :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__``