summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2009-03-25 00:52:11 (GMT)
committerSkip Montanaro <skip@pobox.com>2009-03-25 00:52:11 (GMT)
commit9a1337b95e488a46caa781853591c20fd1de3be9 (patch)
tree7e3c7d691177b3b04d9fd1d91c5d8dce221e8a8d /Doc
parentd0cdb2ddf27fbd485527bb9ca0ace6c8cf740fa6 (diff)
downloadcpython-9a1337b95e488a46caa781853591c20fd1de3be9.zip
cpython-9a1337b95e488a46caa781853591c20fd1de3be9.tar.gz
cpython-9a1337b95e488a46caa781853591c20fd1de3be9.tar.bz2
clarify the type of data returned
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/csv.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst
index f19574b..b5994c1 100644
--- a/Doc/library/csv.rst
+++ b/Doc/library/csv.rst
@@ -72,8 +72,8 @@ The :mod:`csv` module defines the following functions:
dialect. For full details about the dialect and formatting parameters, see
section :ref:`csv-fmt-params`.
- All data read are returned as strings. No automatic data type conversion is
- performed.
+ Each row read from the csv file is returned as a list of strings. No
+ automatic data type conversion is performed.
A short usage example::