From 99c2d531d1e820830b66c99596efaeb2b9e48e50 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Mon, 1 Sep 2003 23:30:44 +0000 Subject: SF patch #790443: add SafeConfigParser to __all__ (Contributed by George Yoshida.) --- Lib/ConfigParser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py index 5f26715..fa6b053 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" -- cgit v0.12