danbarrese
11/18/2016 - 9:50 PM

hashable Python object

hashable Python object

class Abc(object):
    def __eq__(self, other):
        return ...

    def __hash__(self):
        return hash(...)