From: Skip Montanaro Date: Wed, 25 Mar 2009 00:52:11 +0000 (+0000) Subject: clarify the type of data returned X-Git-Tag: v2.7a1~1799 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a1337b95e488a46caa781853591c20fd1de3be9;p=thirdparty%2FPython%2Fcpython.git clarify the type of data returned --- diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index f19574b273f6..b5994c1955d4 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::