]> granicus.if.org Git - python/commitdiff
clarify the type of data returned
authorSkip Montanaro <skip@pobox.com>
Wed, 25 Mar 2009 00:52:11 +0000 (00:52 +0000)
committerSkip Montanaro <skip@pobox.com>
Wed, 25 Mar 2009 00:52:11 +0000 (00:52 +0000)
Doc/library/csv.rst

index f19574b273f6d34c7b603bc3af129144ad9068fe..b5994c1955d45dc98bee9bdd2a39a33e7db1a87a 100644 (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::