Searched refs:MappingProxyType (Results 1 – 19 of 19) sorted by relevance
10 from types import MappingProxyType463 return MappingProxyType(self._params)
15 MappingProxyType = type(type.__dict__) variable
173 _EMPTY_METADATA = types.MappingProxyType({})245 types.MappingProxyType(metadata))
2 from types import MappingProxyType, DynamicClassAttribute368 return MappingProxyType(cls._member_map_)
331 _dispatch[_types.MappingProxyType.__repr__] = _pprint_mappingproxy
833 wrapper.registry = types.MappingProxyType(registry)
2802 self._parameters = types.MappingProxyType(params)
318 m = types.MappingProxyType(d)330 m = types.MappingProxyType(d)
603 mappingproxy = types.MappingProxyType
1932 type('A', (), types.MappingProxyType({}))
41 Return a :class:`types.MappingProxyType` object for a mapping which
588 return types.MappingProxyType(self._parameters)
256 .. class:: MappingProxyType(mapping)
237 :func:`~types.MappingProxyType` to make it read-only, and exposed
1604 :class:`types.MappingProxyType` to prevent direct dictionary updates).
4294 :class:`types.MappingProxyType` can be used to create a read-only view
2080 Add a new :class:`types.MappingProxyType` class: Read-only proxy of a mapping.
1759 (MappingProxyType). Previously the dictionary was modifiable but a new one
1189 be read-only (MappingProxyType). Previously the dictionary was modifiable7881 - Issue #14386: Expose the dict_proxy internal type as types.MappingProxyType.