Home
last modified time | relevance | path

Searched refs:MappingProxyType (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython3/Lib/email/
Dheaderregistry.py10 from types import MappingProxyType
460 return MappingProxyType(self._params)
/external/python/cpython3/Lib/
Dfunctools.py22 from types import MappingProxyType
808 wrapper.registry = MappingProxyType(registry)
Dtypes.py15 MappingProxyType = type(type.__dict__) variable
Denum.py2 from types import MappingProxyType, DynamicClassAttribute
343 return MappingProxyType(cls._member_map_)
Dpprint.py331 _dispatch[_types.MappingProxyType.__repr__] = _pprint_mappingproxy
Dinspect.py2726 self._parameters = types.MappingProxyType(params)
/external/python/cpython3/Lib/test/
Dtest_pprint.py318 m = types.MappingProxyType(d)
330 m = types.MappingProxyType(d)
Dtest_types.py581 mappingproxy = types.MappingProxyType
Dtest_builtin.py1801 type('A', (), types.MappingProxyType({}))
/external/python/cpython3/Doc/c-api/
Ddict.rst41 Return a :class:`types.MappingProxyType` object for a mapping which
/external/python/cpython3/Doc/library/
Dtypes.rst201 .. class:: MappingProxyType(mapping)
Dfunctions.rst1496 :class:`types.MappingProxyType` to prevent direct dictionary updates).
Dstdtypes.rst4188 :class:`types.MappingProxyType` can be used to create a read-only view
/external/python/cpython3/Doc/whatsnew/
D3.3.rst2080 Add a new :class:`types.MappingProxyType` class: Read-only proxy of a mapping.
/external/python/cpython3/Misc/
DNEWS7243 be read-only (MappingProxyType). Previously the dictionary was modifiable
DHISTORY1189 be read-only (MappingProxyType). Previously the dictionary was modifiable
7881 - Issue #14386: Expose the dict_proxy internal type as types.MappingProxyType.