diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-10-02 16:25:32 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-10-02 16:25:32 (GMT) |
commit | e2382c598c10482398eafb3e717c80e3f8da703f (patch) | |
tree | c16ee1bc493c9560a71c6ef933ee0eade3404191 /Modules/_csv.c | |
parent | 28b21e50c8f1bc9f4524b02df75b83f3b5efacb4 (diff) | |
download | cpython-e2382c598c10482398eafb3e717c80e3f8da703f.zip cpython-e2382c598c10482398eafb3e717c80e3f8da703f.tar.gz cpython-e2382c598c10482398eafb3e717c80e3f8da703f.tar.bz2 |
Issue #25290: Fix typo in csv.reader() docstring
Patch by Johannes Niediek.
Diffstat (limited to 'Modules/_csv.c')
-rw-r--r-- | Modules/_csv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_csv.c b/Modules/_csv.c index 7a71564..1a363fa 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" |