summaryrefslogtreecommitdiffstats
path: root/Doc/library/csv.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-01-09 08:01:46 (GMT)
committerGeorg Brandl <georg@python.org>2011-01-09 08:01:46 (GMT)
commit41d0815a65484aa72c37d09012bee38cfdecf393 (patch)
tree13ff9b862fb6d801c051701d82c60e5b789ee421 /Doc/library/csv.rst
parent1caa644ffea384c3482e3da4cb142a2610d7f470 (diff)
downloadcpython-41d0815a65484aa72c37d09012bee38cfdecf393.zip
cpython-41d0815a65484aa72c37d09012bee38cfdecf393.tar.gz
cpython-41d0815a65484aa72c37d09012bee38cfdecf393.tar.bz2
Merged revisions 87789-87790 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k ........ r87789 | georg.brandl | 2011-01-06 10:23:56 +0100 (Do, 06 Jan 2011) | 1 line Fix various issues (mostly Python 2 relics) found by Jacques Ducasse. ........ r87790 | georg.brandl | 2011-01-06 10:25:27 +0100 (Do, 06 Jan 2011) | 1 line Add acks where acks are due. ........
Diffstat (limited to 'Doc/library/csv.rst')
-rw-r--r--Doc/library/csv.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst
index e75f00a..6a981a8 100644
--- a/Doc/library/csv.rst
+++ b/Doc/library/csv.rst
@@ -50,7 +50,7 @@ The :mod:`csv` module defines the following functions:
Return a reader object which will iterate over lines in the given *csvfile*.
*csvfile* can be any object which supports the :term:`iterator` protocol and returns a
- string each time its :meth:`!next` method is called --- :term:`file objects
+ string each time its :meth:`!__next__` method is called --- :term:`file objects
<file object>` and list objects are both suitable. If *csvfile* is a file object,
it should be opened with ``newline=''``. [#]_ An optional
*dialect* parameter can be given which is used to define a set of parameters