#5636: fix next -> __next__ in csv reader docs.

This commit is contained in:
Georg Brandl 2009-04-01 15:53:15 +00:00
parent 9ae3640b0e
commit c748506427
3 changed files with 9 additions and 8 deletions

View File

@ -351,15 +351,14 @@ Reader Objects
Reader objects (:class:`DictReader` instances and objects returned by the
:func:`reader` function) have the following public methods:
.. method:: csvreader.next()
.. method:: csvreader.__next__()
Return the next row of the reader's iterable object as a list, parsed according
to the current dialect.
to the current dialect. Usually you should call this as ``next(reader)``.
Reader objects have the following public attributes:
.. attribute:: csvreader.dialect
A read-only description of the dialect in use by the parser.
@ -371,10 +370,8 @@ Reader objects have the following public attributes:
number of records returned, as records can span multiple lines.
DictReader objects have the following public attribute:
.. attribute:: csvreader.fieldnames
If not passed as a parameter when creating the object, this attribute is

View File

@ -598,7 +598,11 @@ def test_cgi_xmlrpc_response(self):
sys.stdin = open("xmldata.txt", "r")
sys.stdout = open(support.TESTFN, "w")
self.cgi.handle_request()
os.environ['CONTENT_LENGTH'] = str(len(data))
try:
self.cgi.handle_request()
finally:
del os.environ['CONTENT_LENGTH']
sys.stdin.close()
sys.stdout.close()

View File

@ -590,7 +590,7 @@ def handle_request(self, request_text = None):
# POST data is normally available through stdin
try:
length = int(os.environ.get('CONTENT_LENGTH', None))
except ValueError:
except (ValueError, TypeError):
length = -1
if request_text is None:
request_text = sys.stdin.read(length)