From: Neal Norwitz Date: Mon, 30 Dec 2002 23:38:47 +0000 (+0000) Subject: Add missing InterpolationSyntaxError. X-Git-Tag: v2.3c1~2768 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ce1d944b6b3c51bfb6505652c678aaef99c36d50;p=thirdparty%2FPython%2Fcpython.git Add missing InterpolationSyntaxError. XXX Not sure this is correct. --- diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py index 845886b7a1dd..a48d54bb91d4 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,