[Python-checkins] cpython (merge 3.4 -> 3.5): Issue #25290: Fix typo in csv.reader() docstring

berker.peksag python-checkins at python.org
Fri Oct 2 12:25:55 EDT 2015


https://hg.python.org/cpython/rev/3b565295eba0
changeset:   98482:3b565295eba0
branch:      3.5
parent:      98478:a61fa2b08f87
parent:      98481:3940f480ea16
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Fri Oct 02 19:25:53 2015 +0300
summary:
  Issue #25290: Fix typo in csv.reader() docstring

Patch by Johannes Niediek.

files:
  Modules/_csv.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/_csv.c b/Modules/_csv.c
--- a/Modules/_csv.c
+++ b/Modules/_csv.c
@@ -1562,7 +1562,7 @@
 "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"

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list