summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-18 13:53:15 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-18 13:53:15 (GMT)
commite2303f8970ee6f30d3781ad31f76530d135a57b5 (patch)
treecc58d6372e44c47264572721f5a45fd5ef3f1bb1
parentb6375a2d91c71bb24bb4aac9fdb723e9d1fcb37d (diff)
parent4001e96179543cf056613e65dcedc63716c6bc21 (diff)
downloadcpython-e2303f8970ee6f30d3781ad31f76530d135a57b5.zip
cpython-e2303f8970ee6f30d3781ad31f76530d135a57b5.tar.gz
cpython-e2303f8970ee6f30d3781ad31f76530d135a57b5.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