From 4e2947728c13cfca931a83e7baa55f2e7dc0f22c Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Fri, 2 Oct 2015 19:30:21 +0300 Subject: Issue #25290: Fix typo in csv.reader() docstring Patch by Johannes Niediek. --- Modules/_csv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_csv.c b/Modules/_csv.c index 00f5d00..884e051 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" -- cgit v0.12