summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-03-01 02:04:32 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-03-01 02:04:32 (GMT)
commit3bac8b20b5284e613c5b7f6add3db3ba7c93760a (patch)
tree1ee6837a123b205d6018483334cf842e058e34b0 /Doc
parentbcf7bf3833a65018e431c46f49168af88826c531 (diff)
downloadcpython-3bac8b20b5284e613c5b7f6add3db3ba7c93760a.zip
cpython-3bac8b20b5284e613c5b7f6add3db3ba7c93760a.tar.gz
cpython-3bac8b20b5284e613c5b7f6add3db3ba7c93760a.tar.bz2
Fix docs for ConfigParser.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/configparser.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst
index 1de11b9..bab44d4 100644
--- a/Doc/library/configparser.rst
+++ b/Doc/library/configparser.rst
@@ -76,7 +76,7 @@ write-back, as will be the keys within each section.
*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 @@ write-back, as will be the keys within each section.
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