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

`writerows()` takes an iterable.
This commit is contained in:
Zackery Spytz 2018-06-02 09:02:16 -06:00 committed by Mariatta
parent 00818c8ffd
commit a801cf164b
1 changed files with 3 additions and 2 deletions

View File

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