Commit a4df146f authored by Skip Montanaro's avatar Skip Montanaro

clarify the type of data returned

parent dcd17c74
...@@ -70,8 +70,8 @@ The :mod:`csv` module defines the following functions: ...@@ -70,8 +70,8 @@ The :mod:`csv` module defines the following functions:
dialect. For full details about the dialect and formatting parameters, see dialect. For full details about the dialect and formatting parameters, see
section :ref:`csv-fmt-params`. section :ref:`csv-fmt-params`.
All data read are returned as strings. No automatic data type conversion is Each row read from the csv file is returned as a list of strings. No
performed. automatic data type conversion is performed.
The parser is quite strict with respect to multi-line quoted fields. Previously, The parser is quite strict with respect to multi-line quoted fields. Previously,
if a line ended within a quoted field without a terminating newline character, a if a line ended within a quoted field without a terminating newline character, a
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment