Hello, Please see this short script:
# -*- coding: utf-8 -*- a = "รค" print unicode(a) It does work if not compile with pyinstaller. If compiled with: pyinstaller.py scriptname.py I get an error: Traceback (most recent call last): File "<string>", line 4, in <module> UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 0: ordinal not in range(128) Using latest trunk with python 2.6.6 32bit on windows xp pro 64bit Cheers Sebastian -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
