summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-18 13:53:39 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-18 13:53:39 (GMT)
commita9466c653017771aaa60a08f0d7b2fe660b7f712 (patch)
treec619d1d9810448f7be4e1805061d9a13acde177f
parent928405303dfdb740e5b40815a0cfdb2da92f768d (diff)
parente2303f8970ee6f30d3781ad31f76530d135a57b5 (diff)
downloadcpython-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.rst2
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