[issue8288] zipfile module documentation misprint

2010-04-02 Thread Georg Brandl
Georg Brandl added the comment: In 2.x, the method is really called next(). -- ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue8288] zipfile module documentation misprint

2010-04-02 Thread Grigory
Grigory added the comment: What about 2.7? I see the issue there too. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue8288] zipfile module documentation misprint

2010-04-02 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r79615 (only applies to py3k.) -- resolution: -> fixed status: open -> closed versions: +Python 3.2 -Python 2.6 ___ Python tracker _

[issue8288] zipfile module documentation misprint

2010-04-02 Thread Grigory
New submission from Grigory : Zipfile module documentaion says: """ The file-like object is read-only and provides the following methods: read(), readline(), readlines(), __iter__(), next() """ But ZipExtFile class doesn't provide next(), it provides __next__(). -- assignee: georg.bran