Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
DConfigParser.py217 class MissingSectionHeaderError(ParsingError): class
512 raise MissingSectionHeaderError(fpname, lineno, line)
/external/python/cpython2/Lib/test/
Dtest_cfgparser.py178 self.parse_error(ConfigParser.MissingSectionHeaderError,
725 e1 = ConfigParser.MissingSectionHeaderError('filename', 123, 'line')
/external/python/cpython3/Lib/test/
Dtest_configparser.py531 e = self.parse_error(cf, configparser.MissingSectionHeaderError,
544 error = configparser.MissingSectionHeaderError
1567 with self.assertRaises(configparser.MissingSectionHeaderError) as dse:
1833 e1 = configparser.MissingSectionHeaderError('filename', 123, 'line')
/external/python/cpython3/Lib/
Dconfigparser.py340 class MissingSectionHeaderError(ParsingError): class
1082 raise MissingSectionHeaderError(fpname, lineno, line)
/external/python/cpython2/Doc/library/
Dconfigparser.rst205 .. exception:: MissingSectionHeaderError
/external/python/cpython3/Doc/library/
Dconfigparser.rst1312 .. exception:: MissingSectionHeaderError