Searched refs:dict_type (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Lib/ |
D | plistlib.py | 165 def __init__(self, dict_type): argument 169 self._dict_type = dict_type 455 def __init__(self, dict_type): argument 456 self._dict_type = dict_type 856 def load(fp, *, fmt=None, dict_type=dict): argument 874 p = P(dict_type=dict_type) 878 def loads(value, *, fmt=None, dict_type=dict): argument 883 return load(fp, fmt=fmt, dict_type=dict_type)
|
D | configparser.py | 601 def __init__(self, defaults=None, dict_type=_default_dict, argument 608 self._dict = dict_type
|
/third_party/python/Doc/library/ |
D | plistlib.rst | 55 .. function:: load(fp, *, fmt=None, dict_type=dict) 69 The *dict_type* is the type used for dictionaries that are read from the 83 .. function:: loads(data, *, fmt=None, dict_type=dict)
|
D | configparser.rst | 487 * *dict_type*, default value: :class:`dict` 904 .. class:: ConfigParser(defaults=None, dict_type=dict, allow_no_value=False, delimiters=('=', ':'),… 907 into the dictionary of intrinsic defaults. When *dict_type* is given, it 951 The default *dict_type* is :class:`collections.OrderedDict`. 967 The default *dict_type* is :class:`dict`, since it now preserves 1238 .. class:: RawConfigParser(defaults=None, dict_type=dict, \ 1252 The default *dict_type* is :class:`dict`, since it now preserves
|
/third_party/python/Lib/test/ |
D | test_plistlib.py | 604 dict_type=collections.OrderedDict) 622 pl2 = plistlib.loads(data, dict_type=collections.OrderedDict)
|
D | test_configparser.py | 43 dict_type = configparser._default_dict variable in CfgParserTestCaseClass 56 dict_type=self.dict_type, 1417 dict_type = SortedDict variable in SortedTestCase
|
D | test_weakref.py | 1232 def check_len_cycles(self, dict_type, cons): argument 1235 dct = dict_type(cons(o) for o in items) 1258 def check_len_race(self, dict_type, cons): argument 1266 dct = dict_type(cons(o) for o in items)
|
/third_party/python/Parser/ |
D | parser.c | 227 #define dict_type 1151 macro
|