Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1796bbc

Browse files
author
Skip Montanaro
committed
missing module ref (issue6723)
1 parent b0f8829 commit 1796bbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/csv.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The :mod:`csv` module defines the following functions:
9898

9999
>>> import csv
100100
>>> spamWriter = csv.writer(open('eggs.csv', 'w'), delimiter=' ',
101-
... quotechar='|', quoting=QUOTE_MINIMAL)
101+
... quotechar='|', quoting=csv.QUOTE_MINIMAL)
102102
>>> spamWriter.writerow(['Spam'] * 5 + ['Baked Beans'])
103103
>>> spamWriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam'])
104104

0 commit comments

Comments
 (0)