diff options
-rw-r--r-- | Lib/ConfigParser.py | 2 |
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, |