mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
missing module ref (issue6723)
This commit is contained in:
parent
6173285361
commit
f290cb5b1d
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ The :mod:`csv` module defines the following functions:
|
|||
|
||||
>>> import csv
|
||||
>>> spamWriter = csv.writer(open('eggs.csv', 'w'), delimiter=' ',
|
||||
... quotechar='|', quoting=QUOTE_MINIMAL)
|
||||
... quotechar='|', quoting=csv.QUOTE_MINIMAL)
|
||||
>>> spamWriter.writerow(['Spam'] * 5 + ['Baked Beans'])
|
||||
>>> spamWriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam'])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue