[Python-checkins] bpo-23495: Correct the documentation for writerows() of csv Writer objects (GH-6316)

Mariatta webhook-mailer at python.org
Sat Jun 2 11:02:19 EDT 2018


https://github.com/python/cpython/commit/a801cf164be7c62b6a6dba47ff91d6c3edb67729
commit: a801cf164be7c62b6a6dba47ff91d6c3edb67729
branch: master
author: Zackery Spytz <zspytz at gmail.com>
committer: Mariatta <Mariatta at users.noreply.github.com>
date: 2018-06-02T08:02:16-07:00
summary:

bpo-23495: Correct the documentation for writerows() of csv Writer objects (GH-6316)

`writerows()` takes an iterable.

files:
M Doc/library/csv.rst

diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst
index e1290d4c9b5c..08b8edc5227e 100644
--- a/Doc/library/csv.rst
+++ b/Doc/library/csv.rst
@@ -452,8 +452,9 @@ read CSV files (assuming they support complex numbers at all).
 
 .. method:: csvwriter.writerows(rows)
 
-   Write all the *rows* parameters (a list of *row* objects as described above) to
-   the writer's file object, formatted according to the current dialect.
+   Write all elements in *rows* (an iterable of *row* objects as described
+   above) to the writer's file object, formatted according to the current
+   dialect.
 
 Writer objects have the following public attribute:
 



More information about the Python-checkins mailing list