An immutable dictionary implementation for Python
A simple immutable dictionary
frozendict$ python3 -c "from frozendict import frozendict; d = frozendict({'a': 1, 'b': 2}); print(d)"$ python3 -c "from frozendict import frozendict; d = frozendict({'x': 10}); keys = {d: 'value'}; print(keys)"$ python3 -c "from frozendict import frozendict; d = frozendict({'a': 1}); d['a'] = 2" 2>&1 | head -1