diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-03-20 15:08:10 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-03-20 15:08:10 (GMT) |
commit | a50549b84544fde4c531721bfcee63c14f130dc7 (patch) | |
tree | aa561e254ec89764f638abf62e3c475bcf662040 /Doc | |
parent | 5b5394c6dfa76eb3d9f3448f5410d230ef8cd948 (diff) | |
download | cpython-a50549b84544fde4c531721bfcee63c14f130dc7.zip cpython-a50549b84544fde4c531721bfcee63c14f130dc7.tar.gz cpython-a50549b84544fde4c531721bfcee63c14f130dc7.tar.bz2 |
Fix footnote reference.
Diffstat (limited to 'Doc')
-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 1bdfa5b..fac2cdc 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -80,7 +80,7 @@ The :mod:`csv` module defines the following functions: Return a writer object responsible for converting the user's data into delimited strings on the given file-like object. *csvfile* can be any object with a :func:`write` method. If *csvfile* is a file object, - it should be opened with ``newline=''``. [#]_ An optional *dialect* + it should be opened with ``newline=''``. [1]_ An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the |