浙江省高等学校教师教育理论培训

微信搜索“毛凌志岗前心得”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

'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)

试之,奏效!呵呵

posted on 2012-12-21 21:24  lexus  阅读(475)  评论(0编辑  收藏  举报