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: csv.reader next() method missing
Type: behavior Stage:
Components: Documentation Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, loewis, tonyjoblin
Priority: normal Keywords:

Created on 2009-04-01 01:14 by tonyjoblin, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg84954 - (view) Author: Tony Joblin (tonyjoblin) Date: 2009-04-01 01:14
On windows using 3.0.1 the csv.reader.next() public method is missing.
The documentation says that this method should exist and it does exist
in previous versions. There is a __next__ method available and
constructs like:
   for row in reader
       print(row)
still work.
msg84957 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2009-04-01 02:03
I don't think that's a bug in the code, but in the documentation. 
Iterators in 3.x are implemented with __next__ methods, and the next() 
builtin.
msg85026 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-04-01 15:53
Fixed docs in r70955.
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 49886
2009-04-01 15:53:22georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg85026
2009-04-01 02:03:58loewissetnosy: + loewis, georg.brandl
messages: + msg84957

assignee: georg.brandl
components: + Documentation, - Windows
2009-04-01 01:14:34tonyjoblincreate