diff options
author | Raymond Hettinger <python@rcn.com> | 2009-03-01 02:07:25 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-03-01 02:07:25 +0000 |
commit | 4a9fda4280e67aea543d2879e8c2e62ef46b0993 (patch) | |
tree | cab4dd1e9e29d87471c74607a4305392d87a6f9c | |
parent | 9bb9f12266a19a72ab8e9921fddb0de6da48ee74 (diff) | |
download | cpython-git-4a9fda4280e67aea543d2879e8c2e62ef46b0993.tar.gz |
Fix docs for ConfigParser.
-rw-r--r-- | Doc/library/configparser.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst index 1de11b9a62..bab44d4514 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 |