Searched refs:MappingProxyType (Results 1 – 24 of 24) sorted by relevance
6 from types import MappingProxyType465 return MappingProxyType(self._params)
36 from types import GenericAlias, MappingProxyType, AsyncGeneratorType73 MappingProxyType, AsyncGeneratorType,
418 m = types.MappingProxyType(d)430 m = types.MappingProxyType(d)
951 mappingproxy = types.MappingProxyType
2304 type('A', (), types.MappingProxyType({}))
15 MappingProxyType = type(type.__dict__) variable
2 from types import MappingProxyType, DynamicClassAttribute459 return MappingProxyType(cls._member_map_)
196 _EMPTY_METADATA = types.MappingProxyType({})278 types.MappingProxyType(metadata))
895 wrapper.registry = types.MappingProxyType(registry)
359 _dispatch[_types.MappingProxyType.__repr__] = _pprint_mappingproxy
2964 self._parameters = types.MappingProxyType(params)
41 Return a :class:`types.MappingProxyType` object for a mapping which
359 .. class:: MappingProxyType(mapping)
265 :func:`~types.MappingProxyType` to make it read-only, and exposed
1815 :class:`types.MappingProxyType` to prevent direct dictionary updates).
4603 :class:`types.MappingProxyType` can be used to create a read-only view4655 Return a :class:`types.MappingProxyType` that wraps the original
623 :class:`types.MappingProxyType` is now reversible.
705 :class:`types.MappingProxyType` objects now support the merge (``|``)
763 :class:`types.MappingProxyType` wrapping the original dictionary. Patch
1759 (MappingProxyType). Previously the dictionary was modifiable but a new one
1535 The standard library classes :class:`dict` and :class:`types.MappingProxyType`
814 :class:`types.MappingProxyType` object wrapping the original
2080 Add a new :class:`types.MappingProxyType` class: Read-only proxy of a mapping.
1189 be read-only (MappingProxyType). Previously the dictionary was modifiable7881 - Issue #14386: Expose the dict_proxy internal type as types.MappingProxyType.