missing module ref (issue6723)
This commit is contained in:
parent
397bd1e740
commit
56366cc6eb
|
@ -117,7 +117,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…
Reference in New Issue