Searched refs:MissingSectionHeaderError (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/ |
D | ConfigParser.py | 217 class MissingSectionHeaderError(ParsingError): class 512 raise MissingSectionHeaderError(fpname, lineno, line)
|
/external/python/cpython2/Lib/test/ |
D | test_cfgparser.py | 178 self.parse_error(ConfigParser.MissingSectionHeaderError, 725 e1 = ConfigParser.MissingSectionHeaderError('filename', 123, 'line')
|
/external/python/cpython3/Lib/test/ |
D | test_configparser.py | 531 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/ |
D | configparser.py | 340 class MissingSectionHeaderError(ParsingError): class 1082 raise MissingSectionHeaderError(fpname, lineno, line)
|
/external/python/cpython2/Doc/library/ |
D | configparser.rst | 205 .. exception:: MissingSectionHeaderError
|
/external/python/cpython3/Doc/library/ |
D | configparser.rst | 1312 .. exception:: MissingSectionHeaderError
|