From d73fe468f0bb1d33de00de11703673d813684c09 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Mon, 1 Sep 2003 23:31:39 +0000 Subject: [PATCH] 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 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" -- 2.47.3