From: Raymond Hettinger Date: Mon, 1 Sep 2003 23:30:44 +0000 (+0000) Subject: SF patch #790443: add SafeConfigParser to __all__ X-Git-Tag: v2.4a1~1670 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99c2d531d1e820830b66c99596efaeb2b9e48e50;p=thirdparty%2FPython%2Fcpython.git SF patch #790443: add SafeConfigParser to __all__ (Contributed by George Yoshida.) --- diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py index 5f26715e3438..fa6b053f1951 100644 --- a/Lib/ConfigParser.py +++ b/Lib/ConfigParser.py @@ -92,7 +92,7 @@ import re __all__ = ["NoSectionError", "DuplicateSectionError", "NoOptionError", "InterpolationError", "InterpolationDepthError", "InterpolationSyntaxError", "ParsingError", - "MissingSectionHeaderError", "ConfigParser", + "MissingSectionHeaderError", "ConfigParser", "SafeConfigParser", "DEFAULTSECT", "MAX_INTERPOLATION_DEPTH"] DEFAULTSECT = "DEFAULT"