Tagged Questions

0
votes
2answers
287 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 ...