We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b4be19 commit d618c8cCopy full SHA for d618c8c
Doc/library/csv.rst
@@ -401,8 +401,10 @@ Reader objects (:class:`DictReader` instances and objects returned by the
401
402
.. method:: csvreader.__next__()
403
404
- Return the next row of the reader's iterable object as a list, parsed according
405
- to the current dialect. Usually you should call this as ``next(reader)``.
+ Return the next row of the reader's iterable object as a list (if the object
+ was returned from :func:`reader`) or a dict (if it is a :class:`DictReader`
406
+ instance), parsed according to the current dialect. Usually you should call
407
+ this as ``next(reader)``.
408
409
410
Reader objects have the following public attributes:
0 commit comments