Skip to content

Instantly share code, notes, and snippets.

@FGtatsuro
Last active June 17, 2020 11:23
Show Gist options
  • Save FGtatsuro/ab68f6774c3551fbe56e to your computer and use it in GitHub Desktop.
Save FGtatsuro/ab68f6774c3551fbe56e to your computer and use it in GitHub Desktop.
Hashable Dict
# http://stackoverflow.com/questions/1151658/python-hashable-dicts
# http://code.activestate.com/recipes/414283-frozen-dictionaries/
class HashableDict(dict):
def __hash__(self):
return hash(frozenset(self.items()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment