diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-18 13:53:39 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-18 13:53:39 (GMT) |
commit | a9466c653017771aaa60a08f0d7b2fe660b7f712 (patch) | |
tree | c619d1d9810448f7be4e1805061d9a13acde177f | |
parent | 928405303dfdb740e5b40815a0cfdb2da92f768d (diff) | |
parent | e2303f8970ee6f30d3781ad31f76530d135a57b5 (diff) | |
download | cpython-a9466c653017771aaa60a08f0d7b2fe660b7f712.zip cpython-a9466c653017771aaa60a08f0d7b2fe660b7f712.tar.gz cpython-a9466c653017771aaa60a08f0d7b2fe660b7f712.tar.bz2 |
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 9873489..558eb98 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 |