diff options
author | Brett Cannon <bcannon@gmail.com> | 2007-10-16 23:24:06 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2007-10-16 23:24:06 (GMT) |
commit | 1f67a677d0a328fc53b2907df937710ec3a502a3 (patch) | |
tree | 2ed4048654b66a9f2c794a00428f163f01b2dd04 /Doc/library/csv.rst | |
parent | 6edff59e3bf546943fa561884d9fe9d7d49a934d (diff) | |
download | cpython-1f67a677d0a328fc53b2907df937710ec3a502a3.zip cpython-1f67a677d0a328fc53b2907df937710ec3a502a3.tar.gz cpython-1f67a677d0a328fc53b2907df937710ec3a502a3.tar.bz2 |
Remove ``:const:`` notation on None in parameter list. Since the markup is not
rendered for parameters it just showed up as ``:const:`None` `` in the output.
Diffstat (limited to 'Doc/library/csv.rst')
-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 4f2c0ba..34867f7 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -143,7 +143,7 @@ The :mod:`csv` module defines the following functions: The :mod:`csv` module defines the following classes: -.. class:: DictReader(csvfile[, fieldnames=:const:None,[, restkey=:const:None[, restval=None[, dialect='excel'[, *args, **kwds]]]]]) +.. class:: DictReader(csvfile[, fieldnames=None[, restkey=None[, restval=None[, dialect='excel'[, *args, **kwds]]]]]) Create an object which operates like a regular reader but maps the information read into a dict whose keys are given by the optional *fieldnames* parameter. |