diff options
| author | Skip Montanaro <skip@pobox.com> | 2009-08-18 14:37:42 +0000 |
|---|---|---|
| committer | Skip Montanaro <skip@pobox.com> | 2009-08-18 14:37:42 +0000 |
| commit | f290cb5b1dc22e91dbf0882a20fc22e5a87d896e (patch) | |
| tree | 727485ead0090aaec328326ad4dd82a92a46a3f4 | |
| parent | 61732853616186123df12d4f3e360b9b4e0c69a0 (diff) | |
| download | cpython-git-f290cb5b1dc22e91dbf0882a20fc22e5a87d896e.tar.gz | |
missing module ref (issue6723)
| -rw-r--r-- | Doc/library/csv.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 7a997b023b..7bbb7c1ccd 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -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']) |
