标签:style blog http io ar color os sp on
原因就是python的str默认是ascii编码,和unicode编码冲突,就会报这个标题错误。那么该怎样解决呢?
/usr/lib64/python2.6/optparse.py 里面加入
import sys reload(sys) sys.setdefaultencoding(‘utf8‘) 这三行就好了
UnicodeDecodeError: ‘ascii’ codec can’t decode...: ordinal not in range(128 问题解决
标签:style blog http io ar color os sp on
原文地址:http://www.cnblogs.com/liqing1009/p/4121499.html