Issue #25290: Fix typo in csv.reader() docstring

Patch by Johannes Niediek.
This commit is contained in:
Berker Peksag 2015-10-02 19:25:32 +03:00
parent 28b21e50c8
commit e2382c598c
1 changed files with 1 additions and 1 deletions

View File

@ -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"