This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: s/next()/__next__/ in collections.abc.Iterator document.
Type: Stage: resolved
Components: Documentation Versions: Python 3.2, Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: asvetlov, docs@python, methane, python-dev
Priority: normal Keywords:

Created on 2012-12-18 10:16 by methane, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg177681 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2012-12-18 10:16
http://docs.python.org/3/library/collections.abc.html#collections.abc.Iterator

>     ABC for classes that provide the __iter__() and next() methods.

"next()" should be "__next__()" for Python 3.
msg177690 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-12-18 13:53
New changeset 259516fddb6c by Andrew Svetlov in branch '3.2':
Issue #16711: Fix required method names for collections.Iterator
http://hg.python.org/cpython/rev/259516fddb6c

New changeset 864bb05be215 by Andrew Svetlov in branch '3.3':
Issue #16711: Fix required method names for collections.Iterator
http://hg.python.org/cpython/rev/864bb05be215

New changeset 85127ec7d724 by Andrew Svetlov in branch 'default':
Issue #16711: Fix required method names for collections.Iterator
http://hg.python.org/cpython/rev/85127ec7d724
msg177691 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2012-12-18 13:54
Fixed. Thanks.
History
Date User Action Args
2022-04-11 14:57:39adminsetgithub: 60915
2012-12-18 13:54:26asvetlovsetstatus: open -> closed

versions: + Python 3.2, Python 3.4
nosy: + asvetlov

messages: + msg177691
resolution: fixed
stage: resolved
2012-12-18 13:53:52python-devsetnosy: + python-dev
messages: + msg177690
2012-12-18 10:16:52methanecreate