Searched refs:DuplicateSectionError (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Lib/ |
D | configparser.py | 190 class DuplicateSectionError(Error): class 659 raise DuplicateSectionError(section) 743 except (DuplicateSectionError, ValueError): 1067 raise DuplicateSectionError(sectname, fpname,
|
/external/python/cpython2/Lib/ |
D | ConfigParser.py | 147 class DuplicateSectionError(Error): class 264 raise DuplicateSectionError(section)
|
/external/python/cpython3/Lib/test/ |
D | test_configparser.py | 337 with self.assertRaises(configparser.DuplicateSectionError): 407 with self.assertRaises(configparser.DuplicateSectionError): 614 with self.assertRaises(configparser.DuplicateSectionError) as cm: 621 with self.assertRaises(configparser.DuplicateSectionError) as cm: 1534 with self.assertRaises(configparser.DuplicateSectionError) as dse: 1727 e1 = configparser.DuplicateSectionError('section', 'source', 123)
|
D | pstats.pck | 85 …��>0(u*/home/gbr/devel/python/Lib/configparser.pyi�uDuplicateSectionError(ii…
|
/external/python/cpython2/Lib/test/ |
D | test_cfgparser.py | 237 self.assertRaises(ConfigParser.DuplicateSectionError, 648 e1 = ConfigParser.DuplicateSectionError('section')
|
/external/python/cpython2/Doc/library/ |
D | configparser.rst | 165 .. exception:: DuplicateSectionError 250 already exists, :exc:`DuplicateSectionError` is raised. If the name
|
/external/python/cpython3/Doc/library/ |
D | configparser.rst | 889 string or dictionary), raising :exc:`DuplicateSectionError` or 954 name already exists, :exc:`DuplicateSectionError` is raised. If the 1227 name already exists, :exc:`DuplicateSectionError` is raised. If the 1262 .. exception:: DuplicateSectionError
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.2.rst | 2626 :exc:`~configparser.DuplicateSectionError` or
|