class documentation

class ImmutableTypeConversionDict(ImmutableDictMixin, TypeConversionDict):

View In Hierarchy

Works like a TypeConversionDict but does not support modifications.

New in version 0.5.
Method __copy__ 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

Inherited from TypeConversionDict:

Method get No summary
def __copy__(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).