1
vote
3answers
226 views
Reading “raw” Unicode-strings in Python
Dear all,
I am quite new to Python so my question might be silly, but even though reading through a lot of threads I didn't find an answer to my question.
I have a mixed source document which …
1
vote
1answer
769 views
conversion of unicode string in python
I need to convert unicode strings in Python to other types such as unsigned and signed int 8 bits,unsigned and signed int 16 bits,unsigned and signed int 32 bits,unsigned and signed int 64 …
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 …
