Home
last modified time | relevance | path

Searched refs:configparser (Results 1 – 25 of 32) sorted by relevance

12

/third_party/python/Lib/test/
Dtest_configparser.py2 import configparser
43 dict_type = configparser._default_dict
45 default_section = configparser.DEFAULTSECT
46 interpolation = configparser._UNSET
141 with self.assertRaises(configparser.NoSectionError):
143 with self.assertRaises(configparser.NoOptionError):
152 with self.assertRaises(configparser.NoOptionError):
159 with self.assertRaises(configparser.NoOptionError):
165 with self.assertRaises(configparser.NoOptionError):
265 with self.assertRaises(configparser.NoSectionError) as cm:
[all …]
Dpstats.pck11 …ts>(���i���i���g�h㈵��>g�h㈵��>{(���u*���/home/gbr/devel/python/Lib/configparser.pyiq��u���Raw…
27 …ss__>(���i���i���g���ư>g���ư>0(���u*���/home/gbr/devel/python/Lib/configparser.pyi����u���Dup…
85configparser.pyi����u���Error(���i���i���g�h㈵��>g�h㈵��>{(���u���~i����u!���<built-in method …
115 …���i���i���ghUMu�>gm7�7M�?0(���u*���/home/gbr/devel/python/Lib/configparser.pyi���u���__i…
Dtest_logging.py27 import configparser
1482 cp = configparser.ConfigParser()
/third_party/cef/tools/yapf/yapf/yapflib/
Dpy3compat.py39 import configparser
43 CONFIGPARSER_BOOLEAN_STATES = configparser.ConfigParser.BOOLEAN_STATES
64 import ConfigParser as configparser namespace
65 …CONFIGPARSER_BOOLEAN_STATES = configparser.ConfigParser._boolean_states # pylint: disable=protect…
109 class ConfigParser(configparser.ConfigParser):
/third_party/mesa3d/bin/
Dmeson-cmd-extract.py30 import configparser
45 def load_config(path: pathlib.Path) -> configparser.ConfigParser:
47 conf = configparser.ConfigParser()
53 def build_cmd(conf: configparser.ConfigParser) -> str:
/third_party/python/Doc/library/
Dconfigparser.rst1 :mod:`configparser` --- Configuration file parser
4 .. module:: configparser
14 **Source code:** :source:`Lib/configparser.py`
47 import configparser
78 :mod:`configparser` classes can read and write such files. Let's start by
83 >>> import configparser
84 >>> config = configparser.ConfigParser()
108 >>> config = configparser.ConfigParser()
150 >>> another_config = configparser.ConfigParser()
411 custom objects as if they were dictionaries. In case of :mod:`configparser`,
[all …]
Dfileformats.rst14 configparser.rst
D__main__.rst31 >>> import configparser
32 >>> configparser.__name__
33 'configparser'
Dlogging.config.rst82 Reads the logging configuration from a :mod:`configparser`\-format file. The
91 from :class:`~configparser.RawConfigParser`. If a
93 is. Otherwise, a :class:`~configparser.Configparser` is
97 :meth:`~configparser.ConfigParser.read_file`; otherwise,
99 :meth:`~configparser.ConfigParser.read`.
117 An instance of a subclass of :class:`~configparser.RawConfigParser` is
661 :mod:`configparser` functionality. The file must contain sections called
Dshlex.rst142 Module :mod:`configparser`
/third_party/alsa-utils/alsamixer/
DMakefile.am10 configparser.c configparser.h \
/third_party/curl/tests/
Dsmbserver.py37 import configparser
39 import ConfigParser as configparser namespace
73 smb_config = configparser.ConfigParser()
/third_party/python/Lib/distutils/
Dconfig.py7 from configparser import RawConfigParser
Ddist.py382 from configparser import ConfigParser
/third_party/python/Misc/NEWS.d/
D3.6.0rc1.rst83 Reading a corrupt config file left configparser in an invalid state.
D3.10.0rc1.rst428 :mod:`configparser`: using ']' inside a section header will no longer cut
D3.5.1rc1.rst883 Improve message in configparser.InterpolationMissingOptionError. Patch from
D3.7.0a3.rst1155 :meth:`configparser.ConfigParser.read`. Patch by Vincent Michel.
/third_party/python/Doc/tools/
Dsusp-ignored.csv117 library/configparser,,:home,my_dir: ${Common:home_dir}/twosheds
118 library/configparser,,:option,${section:option}
119 library/configparser,,:path,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
120 library/configparser,,:Python,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
121 library/configparser,,:system,path: ${Common:system_dir}/Library/Frameworks/
/third_party/python/Lib/logging/
Dconfig.py60 import configparser
62 if isinstance(fname, configparser.RawConfigParser):
65 cp = configparser.ConfigParser(defaults)
/third_party/jerryscript/tools/
Dgen-magic-strings.py20 from configparser import ConfigParser
/third_party/python/Doc/whatsnew/
D3.2.rst458 :class:`~configparser.ConfigParser`, or :mod:`dbm`. It is also useful with
2127 configparser section in New, Improved, and Deprecated Modules
2130 The :mod:`configparser` module was modified to improve usability and
2133 which has in turn been renamed to :class:`~configparser.ConfigParser`. Support
2173 handler :class:`~configparser.ExtendedInterpolation`::
2609 * The :mod:`configparser` module has a number of clean-ups. The major change is
2615 :meth:`~configparser.ConfigParser.get` and
2616 :meth:`~configparser.ConfigParser.set` operations. In the default
2620 * The :meth:`~configparser.ConfigParser.set` and
2621 :meth:`~configparser.ConfigParser.add_section` methods now verify that
[all …]
D3.5.rst989 configparser section in Improved Modules
992 :mod:`configparser` now provides a way to customize the conversion
994 :class:`~configparser.ConfigParser` constructor, or by defining them
1000 >>> import configparser
1003 >>> cfg = configparser.ConfigParser(converters=conv)
D3.1.rst68 modules. The :mod:`configparser` module uses them by default. This lets
/third_party/python/Lib/idlelib/
Dconfig.py28 from configparser import ConfigParser

12