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.py253 class InterpolationError(Error): class
263 class InterpolationMissingOptionError(InterpolationError):
270 InterpolationError.__init__(self, option, section, msg)
275 class InterpolationSyntaxError(InterpolationError):
283 class InterpolationDepthError(InterpolationError):
292 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.rst1264 .. exception:: InterpolationError
1274 :exc:`InterpolationError`.
1280 Subclass of :exc:`InterpolationError`.
1286 not conform to the required syntax. Subclass of :exc:`InterpolationError`.
/external/python/cpython3/Lib/test/
Dtest_configparser.py1751 e1 = configparser.InterpolationError('option', 'section', 'msg')