[Python-checkins] r58508 - python/trunk/Doc/library/csv.rst

brett.cannon python-checkins at python.org
Wed Oct 17 01:24:06 CEST 2007


Author: brett.cannon
Date: Wed Oct 17 01:24:06 2007
New Revision: 58508

Modified:
   python/trunk/Doc/library/csv.rst
Log:
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.


Modified: python/trunk/Doc/library/csv.rst
==============================================================================
--- python/trunk/Doc/library/csv.rst	(original)
+++ python/trunk/Doc/library/csv.rst	Wed Oct 17 01:24:06 2007
@@ -143,7 +143,7 @@
 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.


More information about the Python-checkins mailing list