[issue12036] ConfigParser: items() adds the vars dictionary to the result

2011-05-09 Thread Łukasz Langa
Łukasz Langa added the comment: This annoyance can't be fixed in 2.x anymore since this is a change of behaviour requiring a full release. While it is very unlikely someone depended on this "feature", changing it breaks compatibility. Reclassified as `Documentation` to explicitly describe tha

[issue12036] ConfigParser: items() adds the vars dictionary to the result

2011-05-09 Thread R. David Murray
Changes by R. David Murray : -- nosy: +lukasz.langa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue12036] ConfigParser: items() adds the vars dictionary to the result

2011-05-09 Thread Isaac Jurado
New submission from Isaac Jurado : >From the following python code: import os from ConfigParser import ConfigParser from pprint import pprint c = ConfigParser() c.read(['test.ini']) pprint(c.items('test', raw=False, vars=os.environ)) I see the values contained in os.environ as well as in sectio