From 9a1337b95e488a46caa781853591c20fd1de3be9 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Wed, 25 Mar 2009 00:52:11 +0000 Subject: [PATCH] clarify the type of data returned --- Doc/library/csv.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index f19574b273f..b5994c1955d 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::