class ImmutableDict(ImmutableDictMixin, dict):
An immutable dict
.
Method | __copy__ |
Undocumented |
Method | __repr__ |
Undocumented |
Method | copy |
Return a shallow mutable copy of this object. Keep in mind that the standard library's copy function is a no-op for this class like for any other python immutable type (eg: tuple ). |
Inherited from ImmutableDictMixin
:
Class Method | fromkeys |
Undocumented |
Method | __delitem__ |
Undocumented |
Method | __hash__ |
Undocumented |
Method | __reduce_ex__ |
Undocumented |
Method | __setitem__ |
Undocumented |
Method | clear |
Undocumented |
Method | pop |
Undocumented |
Method | popitem |
Undocumented |
Method | setdefault |
Undocumented |
Method | update |
Undocumented |
Method | _iter_hashitems |
Undocumented |
Instance Variable | _hash_cache |
Undocumented |
copy
function is a no-op for this class
like for any other python immutable type (eg: tuple
).