Issue #25290: Fix typo in csv.reader() docstring
Patch by Johannes Niediek.
This commit is contained in:
commit
987f215141
|
@ -1562,7 +1562,7 @@ PyDoc_STRVAR(csv_reader_doc,
|
||||||
"provided by the dialect.\n"
|
"provided by the dialect.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"The returned object is an iterator. Each iteration returns a row\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,
|
PyDoc_STRVAR(csv_writer_doc,
|
||||||
" csv_writer = csv.writer(fileobj [, dialect='excel']\n"
|
" csv_writer = csv.writer(fileobj [, dialect='excel']\n"
|
||||||
|
|
Loading…
Reference in New Issue