Metadata-Version: 2.1
Name: freezable-dict
Version: 0.1.1
Summary: A freezable dictionary object.
Home-page: https://github.com/nolanbconaway/freezable_dict
Author: Nolan Conaway
Author-email: nolanbconaway@gmail.com
License: MIT
Keywords: dictionary,mutability,immutable,mapping
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.5
Provides-Extra: test
Requires-Dist: flake8; extra == 'test'


A `FreezableDict` is basically identical to a regular dict, but it offers the
additional possibility of freezing for use as a dictionary key, set item,
etc.

I stole most of the idea from https://stackoverflow.com/a/2704866 so props
to Mike (https://github.com/mikegraham).


