[issue5636] csv.reader next() method missing

2009-04-01 Thread Georg Brandl

Georg Brandl ge...@python.org added the comment:

Fixed docs in r70955.

--
resolution:  - fixed
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5636
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5636] csv.reader next() method missing

2009-03-31 Thread Tony Joblin

New submission from Tony Joblin tonyjob...@yahoo.com.au:

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.

--
components: Windows
messages: 84954
nosy: tonyjoblin
severity: normal
status: open
title: csv.reader next() method missing
type: behavior
versions: Python 3.0

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5636
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5636] csv.reader next() method missing

2009-03-31 Thread Martin v. Löwis

Martin v. Löwis mar...@v.loewis.de added the comment:

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.

--
assignee:  - georg.brandl
components: +Documentation -Windows
nosy: +georg.brandl, loewis

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5636
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com