Searched refs:InterpolationSyntaxError (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Lib/ |
D | configparser.py | 276 class InterpolationSyntaxError(InterpolationError): class 427 raise InterpolationSyntaxError(option, section, 442 raise InterpolationSyntaxError( 488 raise InterpolationSyntaxError(option, section, 503 raise InterpolationSyntaxError( 516 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 | 1316 with self.assertRaises(configparser.InterpolationSyntaxError): 1322 with self.assertRaises(configparser.InterpolationSyntaxError): 1324 with self.assertRaises(configparser.InterpolationSyntaxError): 1623 with self.assertRaises(configparser.InterpolationSyntaxError) as cm: 1627 with self.assertRaises(configparser.InterpolationSyntaxError) as cm: 1781 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 | 1306 .. exception:: InterpolationSyntaxError
|