summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-10-02 16:25:53 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-10-02 16:25:53 (GMT)
commit987f21514122b83e42b04f9782f53b6f77edb174 (patch)
treeaa17814764313d7825309d2a24394c8dfbdfe84d /Modules
parent58c8f2bb6de115b620cec3cf995f04005573765c (diff)
parente2382c598c10482398eafb3e717c80e3f8da703f (diff)
downloadcpython-987f21514122b83e42b04f9782f53b6f77edb174.zip
cpython-987f21514122b83e42b04f9782f53b6f77edb174.tar.gz
cpython-987f21514122b83e42b04f9782f53b6f77edb174.tar.bz2
Issue #25290: Fix typo in csv.reader() docstring
Patch by Johannes Niediek.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_csv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_csv.c b/Modules/_csv.c
index a614191..af901e2 100644
--- a/Modules/_csv.c
+++ b/Modules/_csv.c
@@ -1562,7 +1562,7 @@ PyDoc_STRVAR(csv_reader_doc,
"provided by the dialect.\n"
"\n"
"The returned object is an iterator. Each iteration returns a row\n"
-"of the CSV file (which can span multiple input lines):\n");
+"of the CSV file (which can span multiple input lines).\n");
PyDoc_STRVAR(csv_writer_doc,
" csv_writer = csv.writer(fileobj [, dialect='excel']\n"