Searched refs:RawConfigParser (Results 1 – 25 of 31) sorted by relevance
12
/external/python/cpython2/Doc/library/ |
D | configparser.rst | 87 .. class:: RawConfigParser([defaults[, dict_type[, allow_no_value]]]) 114 Derived class of :class:`RawConfigParser` that implements the magical 230 RawConfigParser Objects 233 :class:`RawConfigParser` instances have the following methods: 236 .. method:: RawConfigParser.defaults() 241 .. method:: RawConfigParser.sections() 247 .. method:: RawConfigParser.add_section(section) 254 .. method:: RawConfigParser.has_section(section) 260 .. method:: RawConfigParser.options(section) 265 .. method:: RawConfigParser.has_option(section, option) [all …]
|
/external/python/cpython3/Lib/distutils/ |
D | config.py | 7 from configparser import RawConfigParser 55 config = RawConfigParser()
|
/external/autotest/server/cros/ |
D | ap_config_unittest.py | 42 parser = six.moves.configparser.RawConfigParser()
|
D | ap_config.py | 31 ap_config = six.moves.configparser.RawConfigParser(
|
/external/autotest/tko/parsers/test/ |
D | scenario_base.py | 350 config = ConfigParser.RawConfigParser() 370 config = ConfigParser.RawConfigParser()
|
/external/python/setuptools/setuptools/command/ |
D | setopt.py | 42 opts = configparser.RawConfigParser()
|
D | easy_install.py | 1515 cfg = configparser.RawConfigParser(init)
|
/external/autotest/frontend/afe/ |
D | moblab_rpc_interface.py | 134 shadow_config = ConfigParser.RawConfigParser() 182 new_shadow = ConfigParser.RawConfigParser() 438 boto_config = ConfigParser.RawConfigParser()
|
/external/python/cpython2/Lib/ |
D | ConfigParser.py | 231 class RawConfigParser: class 588 class ConfigParser(RawConfigParser):
|
/external/python/cpython3/Doc/library/ |
D | configparser.rst | 651 :class:`RawConfigParser` has a default value of ``None``. 722 >>> custom = configparser.RawConfigParser() 784 config = configparser.RawConfigParser() 786 # Please note that using RawConfigParser's set functions, you can assign 807 config = configparser.RawConfigParser() 817 # This is because we are using a RawConfigParser(). 1198 RawConfigParser Objects 1201 .. class:: RawConfigParser(defaults=None, dict_type=dict, \ 1238 :class:`RawConfigParser` (or :class:`ConfigParser` with *raw* parameters
|
D | logging.config.rst | 91 from :class:`~configparser.RawConfigParser`. If a 92 ``RawConfigParser``-derived instance is passed, it is used as 115 An instance of a subclass of :class:`~configparser.RawConfigParser` is
|
/external/clang/utils/check_cfc/ |
D | check_cfc.py | 321 config = ConfigParser.RawConfigParser()
|
/external/llvm-project/clang/utils/check_cfc/ |
D | check_cfc.py | 324 config = configparser.RawConfigParser()
|
/external/python/cpython3/Lib/test/ |
D | test_configparser.py | 883 config_class = configparser.RawConfigParser 1083 config_class = configparser.RawConfigParser 1140 config_class = configparser.RawConfigParser 1404 output = self.prepare(configparser.RawConfigParser) 1432 config_class = configparser.RawConfigParser
|
D | pstats.pck | 11 …�h㈵��>{(u*/home/gbr/devel/python/Lib/configparser.pyiquRawConfigParser(ii…
|
/external/python/cpython2/Lib/test/ |
D | test_cfgparser.py | 449 config_class = ConfigParser.RawConfigParser 582 output = self.prepare(ConfigParser.RawConfigParser)
|
/external/llvm/utils/llvm-build/llvmbuild/ |
D | componentinfo.py | 427 parser = configparser.RawConfigParser()
|
/external/python/setuptools/setuptools/ |
D | package_index.py | 1000 class PyPIConfig(configparser.RawConfigParser): 1006 configparser.RawConfigParser.__init__(self, defaults)
|
/external/python/cpython3/Lib/ |
D | configparser.py | 560 class RawConfigParser(MutableMapping): class 1192 class ConfigParser(RawConfigParser):
|
/external/clang/tools/scan-view/share/ |
D | ScanView.py | 126 self.config = ConfigParser.RawConfigParser()
|
/external/llvm-project/clang/tools/scan-view/share/ |
D | ScanView.py | 143 self.config = configparser.RawConfigParser()
|
/external/python/cpython3/Lib/logging/ |
D | config.py | 62 if isinstance(fname, configparser.RawConfigParser):
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.1rc1.rst | 634 Fixed output of None values for RawConfigParser.write and
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.2rc1.rst | 71 Use RawConfigParser for .pypirc parsing, removing support for interpolation
|
D | 3.6.0a1.rst | 82 Use RawConfigParser for .pypirc parsing, removing support for interpolation
|
12