diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-18 15:53:15 +0200 |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-18 15:53:15 +0200 |
commit | e2303f8970ee6f30d3781ad31f76530d135a57b5 (patch) | |
tree | cc58d6372e44c47264572721f5a45fd5ef3f1bb1 | |
parent | b6375a2d91c71bb24bb4aac9fdb723e9d1fcb37d (diff) | |
parent | 4001e96179543cf056613e65dcedc63716c6bc21 (diff) | |
download | cpython-git-e2303f8970ee6f30d3781ad31f76530d135a57b5.tar.gz |
Issue #16711: Fix required method names for collections.Iterator
Thanks to Inada Naoki
-rw-r--r-- | Doc/library/collections.abc.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst index 9873489c10..558eb98924 100644 --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -90,7 +90,7 @@ ABC Inherits from Abstract Methods Mixin .. 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`. .. class:: Sequence |