Searched refs:InterpolationDepthError (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/ |
D | ConfigParser.py | 192 class InterpolationDepthError(InterpolationError): class 673 raise InterpolationDepthError(option, section, rawval) 698 raise InterpolationDepthError(option, section, rest)
|
/external/python/cpython3/Lib/ |
D | configparser.py | 284 class InterpolationDepthError(InterpolationError): class 410 raise InterpolationDepthError(option, section, rawval) 471 raise InterpolationDepthError(option, section, rawval) 545 raise InterpolationDepthError(option, section, rawval)
|
/external/python/cpython3/Lib/test/ |
D | test_configparser.py | 898 e = self.get_error(cf, configparser.InterpolationDepthError, "Foo", "bar11") 1229 with self.assertRaises(configparser.InterpolationDepthError): 1231 with self.assertRaises(configparser.InterpolationDepthError): 1590 error = configparser.InterpolationDepthError('option', 'section', 1793 e1 = configparser.InterpolationDepthError('option', 'section',
|
/external/python/cpython2/Lib/test/ |
D | test_cfgparser.py | 380 self.get_error(ConfigParser.InterpolationDepthError, "Foo", "bar11") 697 e1 = ConfigParser.InterpolationDepthError('option', 'section',
|
/external/python/cpython2/Doc/library/ |
D | configparser.rst | 182 .. exception:: InterpolationDepthError
|
/external/python/cpython3/Doc/library/ |
D | configparser.rst | 1293 .. exception:: InterpolationDepthError
|