Searched refs:InterpolationSyntaxError (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Lib/ |
D | configparser.py | 275 class InterpolationSyntaxError(InterpolationError): class 426 raise InterpolationSyntaxError(option, section, 441 raise InterpolationSyntaxError( 487 raise InterpolationSyntaxError(option, section, 502 raise InterpolationSyntaxError( 515 raise InterpolationSyntaxError(
|
/external/python/cpython2/Lib/ |
D | ConfigParser.py | 188 class InterpolationSyntaxError(InterpolationError): class 715 raise InterpolationSyntaxError(option, section, 730 raise InterpolationSyntaxError(
|
/external/python/cpython3/Lib/test/ |
D | test_configparser.py | 1312 with self.assertRaises(configparser.InterpolationSyntaxError): 1318 with self.assertRaises(configparser.InterpolationSyntaxError): 1320 with self.assertRaises(configparser.InterpolationSyntaxError): 1619 with self.assertRaises(configparser.InterpolationSyntaxError) as cm: 1623 with self.assertRaises(configparser.InterpolationSyntaxError) as cm: 1777 e1 = configparser.InterpolationSyntaxError('option', 'section', 'msg')
|
/external/python/cpython2/Lib/test/ |
D | test_cfgparser.py | 685 e1 = ConfigParser.InterpolationSyntaxError('option', 'section', 'msg')
|
/external/python/cpython2/Doc/library/ |
D | configparser.rst | 197 .. exception:: InterpolationSyntaxError
|
/external/python/cpython3/Doc/library/ |
D | configparser.rst | 1283 .. exception:: InterpolationSyntaxError
|