bundlewrap/libs/hashable.py
mwiegand 77ed1970e1 wip
2021-07-13 19:00:26 +02:00

7 lines
177 B
Python

class hdict(dict):
def __hash__(self):
return hash(tuple(sorted(self.items())))
class hlist(list):
def __hash__(self):
return hash(tuple(sorted(self)))