0
votes
2answers
56 views
Hash method and UnicodeEncodeError
In Python 2.5, I have the following hash function:
def __hash__(self):
return hash(str(self))
It works well for my needs, but now I started to get the following error message. Any idea of what is …
