class documentation

An immutable :class:`dict`. .. versionadded:: 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 :func:`copy` function is a no-op for this class like for any other python immutable type (eg: :class:`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): (source)

Undocumented

def __repr__(self): (source)

Undocumented

def copy(self): (source)

Return a shallow mutable copy of this object. Keep in mind that the standard library's :func:`copy` function is a no-op for this class like for any other python immutable type (eg: :class:`tuple`).