[issue30760] configparse module in python3 can not write '%' to config file

2018-04-02 Thread Łukasz Langa
Change by Łukasz Langa : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___

[issue30760] configparse module in python3 can not write '%' to config file

2018-03-05 Thread Matej Cepl
Matej Cepl added the comment: Lukasz, this bug could be closed, couldn't it? -- nosy: +mcepl ___ Python tracker ___

[issue30760] configparse module in python3 can not write '%' to config file

2017-07-12 Thread Łukasz Langa
Łukasz Langa added the comment: With the default ConfigParser, we're using basic interpolation, as covered by: https://docs.python.org/3/library/configparser.html#configparser.BasicInterpolation To not have it, set interpolation to None in the ConfigParser constructor: config =

[issue30760] configparse module in python3 can not write '%' to config file

2017-06-29 Thread R. David Murray
Changes by R. David Murray : -- nosy: +lukasz.langa ___ Python tracker ___ ___

[issue30760] configparse module in python3 can not write '%' to config file

2017-06-26 Thread quanyechavshuo
New submission from quanyechavshuo: Hello,I was using configparser module in python3.6,but find it works not good when I try to write '%' to my config file,below is my func: def update_config_file_key_value(file, section, key_name, key_value): # 通过configparser模块的调用更新配置文件 #