From: Berker Peksag Date: Fri, 2 Oct 2015 16:25:32 +0000 (+0300) Subject: Issue #25290: Fix typo in csv.reader() docstring X-Git-Tag: v3.5.1rc1~225^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e2382c598c10482398eafb3e717c80e3f8da703f;p=python Issue #25290: Fix typo in csv.reader() docstring Patch by Johannes Niediek. --- diff --git a/Modules/_csv.c b/Modules/_csv.c index 7a7156431c..1a363fa5d0 100644 --- a/Modules/_csv.c +++ b/Modules/_csv.c @@ -1563,7 +1563,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"