[issue33251] ConfigParser.items returns items present in vars

2018-04-23 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e500839796c7fa43998e72edb77165872b9ce034 by Łukasz Langa (Chris Bradbury) in branch 'master': bpo-33251: Update documentation to reflect change. (GH-6446) (#6583)

[issue33251] ConfigParser.items returns items present in vars

2018-04-23 Thread Chris Bradbury
Change by Chris Bradbury : -- pull_requests: +6283 ___ Python tracker ___ ___

[issue33251] ConfigParser.items returns items present in vars

2018-04-23 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 1d4a733cceee237f0850b7887c2945dee707da27 by Łukasz Langa (Chris Bradbury) in branch 'master': bpo-33251: Prevent ConfigParser.items returning items present in vars. (#6446)

[issue33251] ConfigParser.items returns items present in vars

2018-04-22 Thread Łukasz Langa
Łukasz Langa added the comment: > What *actually* was changed in 3.2? In terms of this issue, nothing. That piece of documentation was put without proper testing, based purely on a comment that somebody put on issue12036. My mistake. --

[issue33251] ConfigParser.items returns items present in vars

2018-04-22 Thread Chris Bradbury
Change by Chris Bradbury : -- pull_requests: +6264 ___ Python tracker ___ ___

[issue33251] ConfigParser.items returns items present in vars

2018-04-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: What *actually* was changed in 3.2? -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue33251] ConfigParser.items returns items present in vars

2018-04-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +6193 ___ Python tracker ___

[issue33251] ConfigParser.items returns items present in vars

2018-04-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +6192 ___ Python tracker ___

[issue33251] ConfigParser.items returns items present in vars

2018-04-16 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +6191 ___ Python tracker ___ ___

[issue33251] ConfigParser.items returns items present in vars

2018-04-16 Thread Łukasz Langa
Łukasz Langa added the comment: Well, now that I think about it, this is not even a *bug* fix since it's behavior that configparser had since 1997. So that will have to go straight to 3.8. -- versions: +Python 3.8 -Python 3.6 ___

[issue33251] ConfigParser.items returns items present in vars

2018-04-16 Thread Łukasz Langa
Łukasz Langa added the comment: Hm. The documentation change was done in issue12036 but it seems this was actually never the case, contrary to what the conversation on that other issue there states. I wouldn't change it for 3.6.6 anymore since it's pretty late in the release

[issue33251] ConfigParser.items returns items present in vars

2018-04-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +terry.reedy ___ Python tracker ___ ___

[issue33251] ConfigParser.items returns items present in vars

2018-04-10 Thread Chris Bradbury
Change by Chris Bradbury : -- keywords: +patch pull_requests: +6141 stage: -> patch review ___ Python tracker ___

[issue33251] ConfigParser.items returns items present in vars

2018-04-10 Thread Ned Deily
Change by Ned Deily : -- nosy: +lukasz.langa ___ Python tracker ___ ___ Python-bugs-list

[issue33251] ConfigParser.items returns items present in vars

2018-04-09 Thread Tim Shaffer
Change by Tim Shaffer : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list

[issue33251] ConfigParser.items returns items present in vars

2018-04-09 Thread Tim Shaffer
New submission from Tim Shaffer : The documentation for ConfigParser.items(section, raw=False, vars=None) says the following: > Changed in version 3.2: Items present in vars no longer appear in the result. > The previous behaviour mixed actual parser options with variables