Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/email/
Dheaderregistry.py10 from types import MappingProxyType
463 return MappingProxyType(self._params)
/external/python/cpython3/Lib/
Dtypes.py15 MappingProxyType = type(type.__dict__) variable
Ddataclasses.py173 _EMPTY_METADATA = types.MappingProxyType({})
245 types.MappingProxyType(metadata))
Denum.py2 from types import MappingProxyType, DynamicClassAttribute
368 return MappingProxyType(cls._member_map_)
Dpprint.py331 _dispatch[_types.MappingProxyType.__repr__] = _pprint_mappingproxy
Dfunctools.py833 wrapper.registry = types.MappingProxyType(registry)
Dinspect.py2802 self._parameters = types.MappingProxyType(params)
/external/python/cpython3/Lib/test/
Dtest_pprint.py318 m = types.MappingProxyType(d)
330 m = types.MappingProxyType(d)
Dtest_types.py603 mappingproxy = types.MappingProxyType
Dtest_builtin.py1932 type('A', (), types.MappingProxyType({}))
/external/python/cpython3/Doc/c-api/
Ddict.rst41 Return a :class:`types.MappingProxyType` object for a mapping which
/external/python/funcsigs/funcsigs/
D__init__.py588 return types.MappingProxyType(self._parameters)
/external/python/cpython3/Doc/library/
Dtypes.rst256 .. class:: MappingProxyType(mapping)
Ddataclasses.rst237 :func:`~types.MappingProxyType` to make it read-only, and exposed
Dfunctions.rst1604 :class:`types.MappingProxyType` to prevent direct dictionary updates).
Dstdtypes.rst4294 :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/NEWS.d/
D3.5.0a1.rst1759 (MappingProxyType). Previously the dictionary was modifiable but a new one
/external/python/cpython3/Misc/
DHISTORY1189 be read-only (MappingProxyType). Previously the dictionary was modifiable
7881 - Issue #14386: Expose the dict_proxy internal type as types.MappingProxyType.