class documentation

A dictionary that is not publicly mutable.

Method __new__ Undocumented
Method __reduce__ Undocumented
Method __repr__ Undocumented
Method copy Undocumented
Method _insert_item insert an item into the dictionary directly.

Inherited from ImmutableDictBase:

Method __init__ Undocumented
Method clear Undocumented
Method pop Undocumented
Method popitem Undocumented
Method setdefault Undocumented
Method update Undocumented
Method _readonly Undocumented

Inherited from ReadOnlyContainer (via ImmutableDictBase):

Method __delitem__ Undocumented
Method __setattr__ Undocumented
Method __setitem__ Undocumented
Class Variable __slots__ Undocumented
Method _immutable Undocumented
def __reduce__(self) -> Any: (source)

Undocumented

def __repr__(self) -> str: (source)

Undocumented

def copy(self) -> NoReturn: (source)

Undocumented

def _insert_item(self, key: _KT, value: _VT): (source)

insert an item into the dictionary directly.