Home
last modified time | relevance | path

Searched refs:RawConfigParser (Results 1 – 25 of 31) sorted by relevance

12

/external/python/cpython2/Doc/library/
Dconfigparser.rst87 .. 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/
Dconfig.py7 from configparser import RawConfigParser
55 config = RawConfigParser()
/external/autotest/server/cros/
Dap_config_unittest.py42 parser = six.moves.configparser.RawConfigParser()
Dap_config.py31 ap_config = six.moves.configparser.RawConfigParser(
/external/autotest/tko/parsers/test/
Dscenario_base.py350 config = ConfigParser.RawConfigParser()
370 config = ConfigParser.RawConfigParser()
/external/python/setuptools/setuptools/command/
Dsetopt.py42 opts = configparser.RawConfigParser()
Deasy_install.py1515 cfg = configparser.RawConfigParser(init)
/external/autotest/frontend/afe/
Dmoblab_rpc_interface.py134 shadow_config = ConfigParser.RawConfigParser()
182 new_shadow = ConfigParser.RawConfigParser()
438 boto_config = ConfigParser.RawConfigParser()
/external/python/cpython2/Lib/
DConfigParser.py231 class RawConfigParser: class
588 class ConfigParser(RawConfigParser):
/external/python/cpython3/Doc/library/
Dconfigparser.rst651 :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
Dlogging.config.rst91 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/
Dcheck_cfc.py321 config = ConfigParser.RawConfigParser()
/external/llvm-project/clang/utils/check_cfc/
Dcheck_cfc.py324 config = configparser.RawConfigParser()
/external/python/cpython3/Lib/test/
Dtest_configparser.py883 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
Dpstats.pck11 …�h㈵��>{(���u*���/home/gbr/devel/python/Lib/configparser.pyiq��u���RawConfigParser(���i���i��…
/external/python/cpython2/Lib/test/
Dtest_cfgparser.py449 config_class = ConfigParser.RawConfigParser
582 output = self.prepare(ConfigParser.RawConfigParser)
/external/llvm/utils/llvm-build/llvmbuild/
Dcomponentinfo.py427 parser = configparser.RawConfigParser()
/external/python/setuptools/setuptools/
Dpackage_index.py1000 class PyPIConfig(configparser.RawConfigParser):
1006 configparser.RawConfigParser.__init__(self, defaults)
/external/python/cpython3/Lib/
Dconfigparser.py560 class RawConfigParser(MutableMapping): class
1192 class ConfigParser(RawConfigParser):
/external/clang/tools/scan-view/share/
DScanView.py126 self.config = ConfigParser.RawConfigParser()
/external/llvm-project/clang/tools/scan-view/share/
DScanView.py143 self.config = configparser.RawConfigParser()
/external/python/cpython3/Lib/logging/
Dconfig.py62 if isinstance(fname, configparser.RawConfigParser):
/external/python/cpython2/Misc/NEWS.d/
D2.7.1rc1.rst634 Fixed output of None values for RawConfigParser.write and
/external/python/cpython3/Misc/NEWS.d/
D3.5.2rc1.rst71 Use RawConfigParser for .pypirc parsing, removing support for interpolation
D3.6.0a1.rst82 Use RawConfigParser for .pypirc parsing, removing support for interpolation

12