- class foxes.utils.Dict(dict)[source]
A slightly enhanced dictionary.
Public members¶
- property name
The dictionary name
- __setitem__(key, value)[source]
Set self[key] to value.
- __getitem__(key)[source]
x.__getitem__(y) <==> x[y]
- update(*args, **kwargs)[source]
Update the dictionary with the key/value pairs from other, overwriting existing keys.