In Python, I often find myself having to override equality and hashing for classes where the equality should be based on a particular piece of data. I usually end up abstracting this to a superclass like this, but I was wondering if Python has anything like this built in. It seems like a common task.
class ValueType(object):
def __init__(self, *args, **kwargs): super(ValueType, self).__init__(*args, **kwargs)
def __eq__(self, other): return self._key() == other._key()
def __ne__(self, other): return self._key() != other._key()
def __hash__(self): return hash(self._key())