Currently our `__hash__` methods returns the hash of a tuple with all attribute values but without taking type information into account: ```pycon >>> @attr.s(hash=True) ... class C: ... x = attr.ib() >>> hash(C(1)) == hash((1,)) True ``` Oopsies!
Currently our
__hash__methods returns the hash of a tuple with all attribute values but without taking type information into account:Oopsies!