summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-03-01 02:16:04 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-03-01 02:16:04 (GMT)
commit85685e976bd8cee44062bc1f71bf68b67dddf6c7 (patch)
tree85b108de6a090421c0cd490bf62f937683326601 /Doc/library
parent478a08e960362049c67c11d1dc7e79b031a7bfc3 (diff)
downloadcpython-85685e976bd8cee44062bc1f71bf68b67dddf6c7.zip
cpython-85685e976bd8cee44062bc1f71bf68b67dddf6c7.tar.gz
cpython-85685e976bd8cee44062bc1f71bf68b67dddf6c7.tar.bz2
Fix docs for ConfigParser.
Diffstat (limited to 'Doc/library')
-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 445e65f..e833e23 100644
--- a/Doc/library/configparser.rst
+++ b/Doc/library/configparser.rst
@@ -65,7 +65,7 @@ write-back, as will be the keys within each section.
support the magical interpolation behavior.
-.. 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
@@ -81,7 +81,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