Home
last modified time | relevance | path

Searched refs:allow_no_value (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_cfgparser.py33 allow_no_value = False variable in TestCaseBase
37 self.cf = self.config_class(allow_no_value=self.allow_no_value)
40 allow_no_value=self.allow_no_value)
70 if self.allow_no_value:
87 if self.allow_no_value:
101 if self.allow_no_value:
249 if self.allow_no_value:
268 if self.allow_no_value:
364 allow_no_value = True variable in ConfigParserTestCase
534 allow_no_value = True variable in SafeConfigParserTestCaseNoValue
[all …]
/external/python/cpython3/Lib/test/
Dtest_configparser.py37 allow_no_value = False variable in CfgParserTestCaseClass
50 allow_no_value=self.allow_no_value,
83 if self.allow_no_value:
132 if self.allow_no_value:
165 if self.allow_no_value:
188 if self.allow_no_value:
231 if self.allow_no_value:
323 if self.allow_no_value:
397 if self.allow_no_value:
534 if not self.allow_no_value:
[all …]
Dcfgparser.37 # allow_no_value = True
/external/python/cpython2/Doc/library/
Dconfigparser.rst87 .. class:: RawConfigParser([defaults[, dict_type[, allow_no_value]]])
92 options within a section, and for the default values. When *allow_no_value*
109 *allow_no_value* was added.
112 .. class:: ConfigParser([defaults[, dict_type[, allow_no_value]]])
133 *allow_no_value* was added.
136 .. class:: SafeConfigParser([defaults[, dict_type[, allow_no_value]]])
152 *allow_no_value* was added.
528 *allow_no_value* parameter to the constructor can be used to indicate that such
545 >>> config = ConfigParser.RawConfigParser(allow_no_value=True)
/external/toolchain-utils/android_bench_suite/
Dconfig.py28 env_config = ConfigParser.ConfigParser(allow_no_value=True)
Drun.py422 test_config = ConfigParser.ConfigParser(allow_no_value=True)
/external/python/cpython3/Lib/
Dconfigparser.py601 allow_no_value=False, *, delimiters=('=', ':'), argument
615 self._optcre = self.OPTCRE_NV if allow_no_value else self.OPTCRE
618 if allow_no_value:
627 self._allow_no_value = allow_no_value
/external/python/cpython2/Lib/
DConfigParser.py233 allow_no_value=False): argument
237 if allow_no_value:
/external/python/cpython3/Doc/library/
Dconfigparser.rst486 * *allow_no_value*, default value: ``False``
490 *allow_no_value* parameter to the constructor can be used to
507 >>> config = configparser.ConfigParser(allow_no_value=True)
758 interfere with constructor options *allow_no_value* and *delimiters*.
864 .. class:: ConfigParser(defaults=None, dict_type=collections.OrderedDict, allow_no_value=False, del…
883 When *allow_no_value* is ``True`` (default: ``False``), options without
914 *allow_no_value*, *delimiters*, *comment_prefixes*, *strict*,
1183 allow_no_value=False, *, delimiters=('=', ':'), \
/external/python/cpython2/Misc/NEWS.d/
D2.7.1rc1.rst799 instances constructed with allow_no_value == True.
/external/python/cpython3/Doc/whatsnew/
D2.7.rst1136 take an *allow_no_value* parameter, defaulting to false; if true,
1146 >>> config = ConfigParser.RawConfigParser(allow_no_value=True)
/external/python/cpython2/Doc/whatsnew/
D2.7.rst1121 take an *allow_no_value* parameter, defaulting to false; if true,
1131 >>> config = ConfigParser.RawConfigParser(allow_no_value=True)