From 4a9fda4280e67aea543d2879e8c2e62ef46b0993 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sun, 1 Mar 2009 02:07:25 +0000 Subject: [PATCH] Fix docs for ConfigParser. --- Doc/library/configparser.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst index 1de11b9a627..bab44d45145 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