[Python-checkins] r70591 - python/branches/py3k/Doc/library/csv.rst

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


Author: skip.montanaro
Date: Wed Mar 25 01:52:18 2009
New Revision: 70591

Log:
clarify the type of data returned

Modified:
   python/branches/py3k/Doc/library/csv.rst

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


More information about the Python-checkins mailing list