Home
last modified time | relevance | path

Searched refs:InterpolationError (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/
DConfigParser.py165 class InterpolationError(Error): class
174 class InterpolationMissingOptionError(InterpolationError):
184 InterpolationError.__init__(self, option, section, msg)
188 class InterpolationSyntaxError(InterpolationError):
192 class InterpolationDepthError(InterpolationError):
201 InterpolationError.__init__(self, option, section, msg)
/external/python/cpython3/Lib/
Dconfigparser.py254 class InterpolationError(Error): class
264 class InterpolationMissingOptionError(InterpolationError):
271 InterpolationError.__init__(self, option, section, msg)
276 class InterpolationSyntaxError(InterpolationError):
284 class InterpolationDepthError(InterpolationError):
293 InterpolationError.__init__(self, option, section, msg)
/external/python/cpython2/Doc/library/
Dconfigparser.rst176 .. exception:: InterpolationError
186 :exc:`InterpolationError`.
192 of :exc:`InterpolationError`.
200 conform to the required syntax. Subclass of :exc:`InterpolationError`.
/external/python/cpython2/Lib/test/
Dtest_cfgparser.py384 e = self.get_error(ConfigParser.InterpolationError,
659 e1 = ConfigParser.InterpolationError('option', 'section', 'msg')
/external/python/cpython3/Doc/library/
Dconfigparser.rst1287 .. exception:: InterpolationError
1297 :exc:`InterpolationError`.
1303 Subclass of :exc:`InterpolationError`.
1309 not conform to the required syntax. Subclass of :exc:`InterpolationError`.
/external/python/cpython3/Lib/test/
Dtest_configparser.py1755 e1 = configparser.InterpolationError('option', 'section', 'msg')