Issue 5636: csv.reader next() method missing (original) (raw)
Issue5636
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) * ![]() |
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) * ![]() |
Date: 2009-04-01 15:53 |
Fixed docs in r70955. |
History | |||
---|---|---|---|
Date | User | Action | Args |
2022-04-11 14:56:47 | admin | set | github: 49886 |
2009-04-01 15:53:22 | georg.brandl | set | status: open -> closedresolution: fixedmessages: + |
2009-04-01 02:03:58 | loewis | set | nosy: + loewis, georg.brandlmessages: + assignee: georg.brandlcomponents: + Documentation, - Windows |
2009-04-01 01:14:34 | tonyjoblin | create |