From: Raymond Hettinger Date: Mon, 1 Sep 2003 23:31:39 +0000 (+0000) Subject: SF patch #790443: add SafeConfigParser to __all__ X-Git-Tag: v2.3.1~105 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d73fe468f0bb1d33de00de11703673d813684c09;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"