ut encodings. How do I do that?
Unicode errors only appear if you're converting between "raw 8-bit data" and
Unicode strings (which contain Unicode characters, not bytes or integers). You
cannot do that without caring about encodings...
I see now. Thanks for your help. It was:
seed1 + pwd
Laszlo Zsolt Nagy wrote:
> Now I installed Python 2.3.4 and wxPython 2.5.3 (with unicode support). I'm
> getting this
> exception:
>
> exceptions.UnicodeDecodeError:'ascii' codec can't decode byte 0x91 in
> position 0: ordinal not in
> range(128)
>From where?
Can you include a "print repr()"
Hello
I have a program where I would like to calculate a checksum. Looks like
this:
n = self.__calc_n(seed1,seed2,pwd)
This is required for an OTP (One Time Password) algorithm. My code was
working before without problems.
Now I installed Python 2.3.4 and wxPython 2.5.3 (with unicode support).