frozen

New in version 1.1.0.

Immutable types

class smisk.util.frozen.frozendict(dict)

Immutable dictionary.

clear(*args, **kwargs)
copy()
D.copy() -> a shallow copy of D
pop(*args, **kwargs)
popitem(*args, **kwargs)
setdefault(*args, **kwargs)
update(*args)

Update a mutable copy with key/value pairs from b, replacing existing keys.

Returns:A mutable copy with updated pairs.
Return type:dict