/third_party/python/Lib/test/ |
D | test_configparser.py | 2 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 …]
|
D | pstats.pck | 11 …ts>(iig�h㈵��>g�h㈵��>{(u*/home/gbr/devel/python/Lib/configparser.pyiquRaw… 27 …ss__>(iig���ư>g���ư>0(u*/home/gbr/devel/python/Lib/configparser.pyi�uDup… 85 …configparser.pyi�uError(iig�h㈵��>g�h㈵��>{(u~iu!<built-in method … 115 …iighUMu�>gm7�7M�?0(u*/home/gbr/devel/python/Lib/configparser.pyi�u__i…
|
D | test_logging.py | 27 import configparser 1482 cp = configparser.ConfigParser()
|
/third_party/cef/tools/yapf/yapf/yapflib/ |
D | py3compat.py | 39 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/ |
D | meson-cmd-extract.py | 30 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/ |
D | configparser.rst | 1 :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 …]
|
D | fileformats.rst | 14 configparser.rst
|
D | __main__.rst | 31 >>> import configparser 32 >>> configparser.__name__ 33 'configparser'
|
D | logging.config.rst | 82 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
|
D | shlex.rst | 142 Module :mod:`configparser`
|
/third_party/alsa-utils/alsamixer/ |
D | Makefile.am | 10 configparser.c configparser.h \
|
/third_party/curl/tests/ |
D | smbserver.py | 37 import configparser 39 import ConfigParser as configparser namespace 73 smb_config = configparser.ConfigParser()
|
/third_party/python/Lib/distutils/ |
D | config.py | 7 from configparser import RawConfigParser
|
D | dist.py | 382 from configparser import ConfigParser
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0rc1.rst | 83 Reading a corrupt config file left configparser in an invalid state.
|
D | 3.10.0rc1.rst | 428 :mod:`configparser`: using ']' inside a section header will no longer cut
|
D | 3.5.1rc1.rst | 883 Improve message in configparser.InterpolationMissingOptionError. Patch from
|
D | 3.7.0a3.rst | 1155 :meth:`configparser.ConfigParser.read`. Patch by Vincent Michel.
|
/third_party/python/Doc/tools/ |
D | susp-ignored.csv | 117 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/ |
D | config.py | 60 import configparser 62 if isinstance(fname, configparser.RawConfigParser): 65 cp = configparser.ConfigParser(defaults)
|
/third_party/jerryscript/tools/ |
D | gen-magic-strings.py | 20 from configparser import ConfigParser
|
/third_party/python/Doc/whatsnew/ |
D | 3.2.rst | 458 :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 …]
|
D | 3.5.rst | 989 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)
|
D | 3.1.rst | 68 modules. The :mod:`configparser` module uses them by default. This lets
|
/third_party/python/Lib/idlelib/ |
D | config.py | 28 from configparser import ConfigParser
|