Issue #16711: Fix required method names for collections.Iterator

Thanks to Inada Naoki
This commit is contained in:
Andrew Svetlov 2012-12-18 15:53:39 +02:00
commit a9466c6530
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ ABC Inherits from Abstract Methods Mixin
.. class:: Iterator .. class:: Iterator
ABC for classes that provide the :meth:`__iter__` and :meth:`next` methods. ABC for classes that provide the :meth:`__iter__` and :meth:`__next__` methods.
See also the definition of :term:`iterator`. See also the definition of :term:`iterator`.
.. class:: Sequence .. class:: Sequence