Home
last modified time | relevance | path

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

/third_party/python/Lib/email/
Dheaderregistry.py6 from types import MappingProxyType
465 return MappingProxyType(self._params)
/third_party/python/Lib/test/
Dtest_genericalias.py36 from types import GenericAlias, MappingProxyType, AsyncGeneratorType
73 MappingProxyType, AsyncGeneratorType,
Dtest_pprint.py418 m = types.MappingProxyType(d)
430 m = types.MappingProxyType(d)
Dtest_types.py951 mappingproxy = types.MappingProxyType
Dtest_builtin.py2304 type('A', (), types.MappingProxyType({}))
/third_party/python/Lib/
Dtypes.py15 MappingProxyType = type(type.__dict__) variable
Denum.py2 from types import MappingProxyType, DynamicClassAttribute
459 return MappingProxyType(cls._member_map_)
Ddataclasses.py196 _EMPTY_METADATA = types.MappingProxyType({})
278 types.MappingProxyType(metadata))
Dfunctools.py895 wrapper.registry = types.MappingProxyType(registry)
Dpprint.py359 _dispatch[_types.MappingProxyType.__repr__] = _pprint_mappingproxy
Dinspect.py2964 self._parameters = types.MappingProxyType(params)
/third_party/python/Doc/c-api/
Ddict.rst41 Return a :class:`types.MappingProxyType` object for a mapping which
/third_party/python/Doc/library/
Dtypes.rst359 .. class:: MappingProxyType(mapping)
Ddataclasses.rst265 :func:`~types.MappingProxyType` to make it read-only, and exposed
Dfunctions.rst1815 :class:`types.MappingProxyType` to prevent direct dictionary updates).
Dstdtypes.rst4603 :class:`types.MappingProxyType` can be used to create a read-only view
4655 Return a :class:`types.MappingProxyType` that wraps the original
/third_party/python/Misc/NEWS.d/
D3.9.0b1.rst623 :class:`types.MappingProxyType` is now reversible.
D3.9.0a5.rst705 :class:`types.MappingProxyType` objects now support the merge (``|``)
D3.10.0a1.rst763 :class:`types.MappingProxyType` wrapping the original dictionary. Patch
D3.5.0a1.rst1759 (MappingProxyType). Previously the dictionary was modifiable but a new one
/third_party/python/Doc/reference/
Dcompound_stmts.rst1535 The standard library classes :class:`dict` and :class:`types.MappingProxyType`
/third_party/python/Doc/whatsnew/
D3.10.rst814 :class:`types.MappingProxyType` object wrapping the original
D3.3.rst2080 Add a new :class:`types.MappingProxyType` class: Read-only proxy of a mapping.
/third_party/python/Misc/
DHISTORY1189 be read-only (MappingProxyType). Previously the dictionary was modifiable
7881 - Issue #14386: Expose the dict_proxy internal type as types.MappingProxyType.