class documentation

class ImmutableDict(ImmutableDictMixin, dict):

View In Hierarchy

An immutable dict.

New in version 0.5.
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
def __copy__(self):

Undocumented

def __repr__(self):

Undocumented

def copy(self):
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).