'module' object has no attribute 'setdefaultencoding'_阿King's blog_百度空间
2010-08-09 21:37'module' object has no attribute 'setdefaultencoding'
今天写工具的时候遇到中文处理,有点恶心
遇到几次:
UnicodeDecodeError: 'ascii' codec can't decode byte 0xb6 in...
之类的错误
都是编码搞的鬼。。
被惹火了,直接在页面头部加了如下两行:
import sys
sys.setdefaultencoding('gbk')一运行,擦!居然提示:
'module' object has no attribute 'setdefaultencoding'
难道我把方法名称记错了?
查了一下,没错。
翻了一下2.6的官方文档,里面有两句话:This function is only intended to be used by the site module implementation and, where needed, by sitecustomize. Once used by the site module, it is removed from the sys module’s namespace.
我英语比较蹩脚,翻译一下就是:一旦被site模块使用,则它将被从sys模块的命名空间中除去。
网上有个蹩脚的方法:
在使用前reload(sys)
试之,奏效!呵呵