Home
last modified time | relevance | path

Searched refs:InterpolationDepthError (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/
DConfigParser.py192 class InterpolationDepthError(InterpolationError): class
673 raise InterpolationDepthError(option, section, rawval)
698 raise InterpolationDepthError(option, section, rest)
/external/python/cpython3/Lib/
Dconfigparser.py283 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/
Dtest_configparser.py892 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/
Dtest_cfgparser.py380 self.get_error(ConfigParser.InterpolationDepthError, "Foo", "bar11")
697 e1 = ConfigParser.InterpolationDepthError('option', 'section',
/external/python/cpython2/Doc/library/
Dconfigparser.rst182 .. exception:: InterpolationDepthError
/external/python/cpython3/Doc/library/
Dconfigparser.rst1270 .. exception:: InterpolationDepthError