clarify the type of data returned

This commit is contained in:
Skip Montanaro 2009-03-25 00:52:11 +00:00
parent d0cdb2ddf2
commit 9a1337b95e
1 changed files with 2 additions and 2 deletions

View File

@ -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::