Searched refs:InterpolationError (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/ |
D | ConfigParser.py | 165 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/ |
D | configparser.py | 253 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/ |
D | configparser.rst | 176 .. exception:: InterpolationError 186 :exc:`InterpolationError`. 192 of :exc:`InterpolationError`. 200 conform to the required syntax. Subclass of :exc:`InterpolationError`.
|
/external/python/cpython2/Lib/test/ |
D | test_cfgparser.py | 384 e = self.get_error(ConfigParser.InterpolationError, 659 e1 = ConfigParser.InterpolationError('option', 'section', 'msg')
|
/external/python/cpython3/Doc/library/ |
D | configparser.rst | 1264 .. 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/ |
D | test_configparser.py | 1751 e1 = configparser.InterpolationError('option', 'section', 'msg')
|