From: Berker Peksag Date: Fri, 2 Oct 2015 16:30:21 +0000 (+0300) Subject: Issue #25290: Fix typo in csv.reader() docstring X-Git-Tag: v2.7.11rc1~92 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4e2947728c13cfca931a83e7baa55f2e7dc0f22c;p=thirdparty%2FPython%2Fcpython.git Issue #25290: Fix typo in csv.reader() docstring Patch by Johannes Niediek. --- diff --git a/Modules/_csv.c b/Modules/_csv.c index 00f5d002cdda..884e05183074 100644 --- a/Modules/_csv.c +++ b/Modules/_csv.c @@ -1520,7 +1520,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"