[Python-checkins] r70590 - python/trunk/Doc/library/csv.rst

skip.montanaro python-checkins at python.org
Wed Mar 25 01:52:11 CET 2009


Author: skip.montanaro
Date: Wed Mar 25 01:52:11 2009
New Revision: 70590

Log:
clarify the type of data returned

Modified:
   python/trunk/Doc/library/csv.rst

Modified: python/trunk/Doc/library/csv.rst
==============================================================================
--- python/trunk/Doc/library/csv.rst	(original)
+++ python/trunk/Doc/library/csv.rst	Wed Mar 25 01:52:11 2009
@@ -72,8 +72,8 @@
    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::
 


More information about the Python-checkins mailing list