diff options
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/csv.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index f19574b273..b5994c1955 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:: |