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 | 283 class InterpolationDepthError(InterpolationError): class 409 raise InterpolationDepthError(option, section, rawval) 470 raise InterpolationDepthError(option, section, rawval) 544 raise InterpolationDepthError(option, section, rawval)
|
/external/python/cpython3/Lib/test/ |
D | test_configparser.py | 892 e = self.get_error(cf, configparser.InterpolationDepthError, "Foo", "bar11") 1225 with self.assertRaises(configparser.InterpolationDepthError): 1227 with self.assertRaises(configparser.InterpolationDepthError): 1586 error = configparser.InterpolationDepthError('option', 'section', 1789 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 | 1270 .. exception:: InterpolationDepthError
|