summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-09-01 23:30:44 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-09-01 23:30:44 (GMT)
commit99c2d531d1e820830b66c99596efaeb2b9e48e50 (patch)
tree603e18fdfee8ad6fe26a1d25ba8c236735d7a555 /Lib
parentaa1178b8113c8428eed61bcd5d0d0ccad833119d (diff)
downloadcpython-99c2d531d1e820830b66c99596efaeb2b9e48e50.zip
cpython-99c2d531d1e820830b66c99596efaeb2b9e48e50.tar.gz
cpython-99c2d531d1e820830b66c99596efaeb2b9e48e50.tar.bz2
SF patch #790443: add SafeConfigParser to __all__
(Contributed by George Yoshida.)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/ConfigParser.py2
1 files changed, 1 insertions, 1 deletions
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"