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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce1d944b6b3c51bfb6505652c678aaef99c36d50;p=python Add missing InterpolationSyntaxError. XXX Not sure this is correct. --- diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py index 845886b7a1..a48d54bb91 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,