python-2.7 – 在Python 2.7中手动构建ConfigParser的深层副本

前端之家收集整理的这篇文章主要介绍了python-2.7 – 在Python 2.7中手动构建ConfigParser的深层副本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
刚开始我的 Python学习曲线,并将一些代码移植到Python 2.7.看起来在Python 2.7中,不再可能对ConfigParser的实例执行deepcopy().似乎Python团队对恢复这样的功能并不十分感兴趣:

http://bugs.python.org/issue16058

有人可以提出一个优雅的解决方案来手动构建ConfigParser实例的深度复制/复制吗?

非常感谢,-Pete

解决方法

基于@Toenex答案,针对Python 2.7进行了修改
import StringIO
import ConfigParser

# Create a deep copy of the configuration object
config_string = StringIO.StringIO()
base_config.write(config_string)

# We must reset the buffer to make it ready for reading.        
config_string.seek(0)        
new_config = ConfigParser.ConfigParser()
new_config.readfp(config_string)
原文链接:https://www.f2er.com/python/186372.html

猜你在找的Python相关文章