eddieantonio / perfection

Simple perfect hashing in Python
https://pypi.python.org/pypi/perfection
MIT License
13 stars 6 forks source link

make_dict fails in Python 3.11 on collections.MutableMapping #8

Open bertbarabas opened 1 year ago

bertbarabas commented 1 year ago

According to the Python doc, collections.MutableMapping was moved to collections.abc back in 3.3 so that's probably why it fails now.

Updating the import in utils.py should fix this issue.