Searched refs:DEFAULTSECT (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/ |
D | ConfigParser.py | 105 DEFAULTSECT = "DEFAULT" variable 329 if section != DEFAULTSECT: 346 if section != DEFAULTSECT: 378 if not section or section == DEFAULTSECT: 390 if not section or section == DEFAULTSECT: 402 fp.write("[%s]\n" % DEFAULTSECT) 418 if not section or section == DEFAULTSECT: 502 elif sectname == DEFAULTSECT: 606 if section != DEFAULTSECT: 641 if section != DEFAULTSECT:
|
/external/python/cpython3/Doc/library/ |
D | configparser.rst | 399 * All sections include ``DEFAULTSECT`` values as well which means that 406 * ``DEFAULTSECT`` cannot be removed from the parser: 419 *section_name*, *section_proxy* pairs including the DEFAULTSECT). However, 627 * *default_section*, default value: ``configparser.DEFAULTSECT`` (that is: 864 … strict=True, empty_lines_in_values=True, default_section=configparser.DEFAULTSECT, interpolation=… 1047 *section*, and in *DEFAULTSECT* in that order. If the key is not found 1091 *section_proxy* pairs, including DEFAULTSECT. 1187 default_section=configparser.DEFAULTSECT[, \
|
/external/python/cpython3/Lib/ |
D | configparser.py | 160 DEFAULTSECT = "DEFAULT" variable 604 default_section=DEFAULTSECT,
|
/external/python/cpython3/Lib/test/ |
D | test_configparser.py | 44 default_section = configparser.DEFAULTSECT
|