summaryrefslogtreecommitdiffstats
path: root/Lib/ConfigParser.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-12-30 23:38:47 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-12-30 23:38:47 (GMT)
commitce1d944b6b3c51bfb6505652c678aaef99c36d50 (patch)
treea07ff6bbd87283acecefd19ba3e7e88b39cc0e7a /Lib/ConfigParser.py
parent6ec0a8ab93d4a77c118c391c2e141e27c0018e27 (diff)
downloadcpython-ce1d944b6b3c51bfb6505652c678aaef99c36d50.zip
cpython-ce1d944b6b3c51bfb6505652c678aaef99c36d50.tar.gz
cpython-ce1d944b6b3c51bfb6505652c678aaef99c36d50.tar.bz2
Add missing InterpolationSyntaxError.
XXX Not sure this is correct.
Diffstat (limited to 'Lib/ConfigParser.py')
-rw-r--r--Lib/ConfigParser.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py
index 845886b..a48d54b 100644
--- a/Lib/ConfigParser.py
+++ b/Lib/ConfigParser.py
@@ -139,6 +139,8 @@ class InterpolationError(Error):
self.option = option
self.section = section
+class InterpolationSyntaxError(Error): pass
+
class InterpolationDepthError(Error):
def __init__(self, option, section, rawval):
Error.__init__(self,