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.
This commit is contained in:
Brett Cannon 2007-10-16 23:24:06 +00:00
parent 6edff59e3b
commit 1f67a677d0
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ The :mod:`csv` module defines the following functions:
The :mod:`csv` module defines the following classes: 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 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. read into a dict whose keys are given by the optional *fieldnames* parameter.