首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

PyInstaller-2.1打包wxpython项目存在字符转换有关问题

2013-11-25 
PyInstaller-2.1打包wxpython项目存在字符转换问题在eclipse环境下运行没有问题,但打包完运行出现:Traceba

PyInstaller-2.1打包wxpython项目存在字符转换问题
在eclipse环境下运行没有问题,但打包完运行出现:
Traceback (most recent call last):
  File "<string>", line 328, in OnColClick
  File "E:\Study\python\tools\PyInstaller-2.1\app\build\app\out00-PYZ.pyz\sqlopt
mode.genmode", line 194, in genSql
  File "E:\Study\python\tools\PyInstaller-2.1\app\build\app\out00-PYZ.pyz\string
", line 205, in safe_substitute
UnicodeDecodeError: 'ascii' codec can't decode byte 0xbd in position 5: ordinal
not in range(128)
主要存在编码字符的问题?不知道如何解决?我统一使用# -*- coding:utf-8 -*-

python字符转换问题
[解决办法]
最好自己代码里控制好来,全程使用unicode,需要8bit的时候显式转换成utf-8,不要自动转换...
[解决办法]
你把错误完整贴出,不要说连一行代码都看不到...

热点排行