[Python-checkins] r70082 - python/branches/release26-maint/Doc/library/configparser.rst

raymond.hettinger python-checkins at python.org
Sun Mar 1 03:07:25 CET 2009


Author: raymond.hettinger
Date: Sun Mar  1 03:07:25 2009
New Revision: 70082

Log:
Fix docs for ConfigParser.

Modified:
   python/branches/release26-maint/Doc/library/configparser.rst

Modified: python/branches/release26-maint/Doc/library/configparser.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/configparser.rst	(original)
+++ python/branches/release26-maint/Doc/library/configparser.rst	Sun Mar  1 03:07:25 2009
@@ -76,7 +76,7 @@
       *dict_type* was added.
 
 
-.. class:: ConfigParser([defaults])
+.. class:: ConfigParser([defaults[, dict_type]])
 
    Derived class of :class:`RawConfigParser` that implements the magical
    interpolation feature and adds optional arguments to the :meth:`get` and
@@ -92,7 +92,7 @@
    equivalent.
 
 
-.. class:: SafeConfigParser([defaults])
+.. class:: SafeConfigParser([defaults[, dict_type]])
 
    Derived class of :class:`ConfigParser` that implements a more-sane variant of
    the magical interpolation feature.  This implementation is more predictable as


More information about the Python-checkins mailing list