Python2.x中支持unicode的configparser
Python2.x中许多内置模块不支持unicode,确实是很烦的事。configparser就是其中之一。
解决方法是使用Python3.x中configparser的backport,http://pypi.python.org/pypi/configparser,下载后解压,把其中的configparser.py
和configparser_helpers.py
放到你的代码所在文件夹中。然后在import时把
import ConfigParser
改成
import configparser
就可以了。
参考:http://bugs.python.org/issue11597
more ...