[issue16711] s/next()/__next__/ in collections.abc.Iterator document.

2012-12-18 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Thanks. -- nosy: +asvetlov resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.2, Python 3.4 ___ Python tracker __

[issue16711] s/next()/__next__/ in collections.abc.Iterator document.

2012-12-18 Thread Roundup Robot
Roundup Robot added the comment: 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 m

[issue16711] s/next()/__next__/ in collections.abc.Iterator document.

2012-12-18 Thread INADA Naoki
New submission from INADA Naoki: 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. -- assignee: docs@python components: Documentation message