Home
last modified time | relevance | path

Searched refs:read_dict (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_configparser.py404 cf.read_dict(config)
408 cf.read_dict({
413 cf.read_dict({
420 cf.read_dict({
424 cf.read_dict({
636 cf.read_dict({'Bar': {'opt': 'val', 'OPT': 'is really `opt`'}})
1460 cf_copy.read_dict(cf)
/external/python/cpython3/Tools/scripts/
Dvar_access_benchmark.py191 def read_dict(trials=trials, a={0: 1}): function
285 read_list, read_deque, read_dict, read_strdict,
/external/python/cpython3/Lib/
Dconfigparser.py725 def read_dict(self, dictionary, source='<dict>'): member in RawConfigParser
974 self.read_dict({key: value})
1219 self.read_dict({self.default_section: defaults})
/external/python/cpython3/Doc/library/
Dconfigparser.rst455 :meth:`read_dict` before you read the actual file.
474 >>> parser.read_dict({'section1': {'key1': 'value1',
600 :meth:`read_string` or :meth:`read_dict`). It is recommended to use strict
932 The *defaults* argument is read with :meth:`read_dict()`,
1041 .. method:: read_dict(dictionary, source='<dict>')
/external/python/cpython3/Doc/whatsnew/
D3.9.rst806 read_dict 24.3 25.7 22.3 23.0 21.0 22.4
D3.8.rst2203 read_dict 19.7 24.3 25.7 22.3 23.0 21.0
D3.7.rst2435 * The :class:`configparser.ConfigParser` constructor now uses ``read_dict()``
D3.2.rst2176 >>> parser.read_dict({'buildout': {'directory': '/home/ambv/zope9'},
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a1.rst1836 using ``read_dict()``, making its behavior consistent with the rest of the
/external/python/cpython3/Misc/
DHISTORY12539 - Issue #9452: Add read_file, read_string, and read_dict to the configparser