From: Andrew Svetlov Date: Tue, 18 Dec 2012 13:48:10 +0000 (+0200) Subject: Issue #16711: Fix required method names for collections.Iterator X-Git-Tag: v3.2.4rc1~256 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4001e96179543cf056613e65dcedc63716c6bc21;p=thirdparty%2FPython%2Fcpython.git Issue #16711: Fix required method names for collections.Iterator Thanks to Inada Naoki --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index f63a853c870c..7a2802df98a1 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -1057,7 +1057,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