[issue33504] configparser should use dict instead of OrderedDict in 3.7+

2019-01-31 Thread INADA Naoki
INADA Naoki added the comment: New changeset 0897e0c597c065f043e4286d01f16f473ab664ee by Inada Naoki in branch 'master': bpo-33504: fix wrong "versionchanged" (GH-11712) https://github.com/python/cpython/commit/0897e0c597c065f043e4286d01f16f473ab664ee -- nosy: +inada.naoki

[issue33504] configparser should use dict instead of OrderedDict in 3.7+

2019-01-31 Thread INADA Naoki
Change by INADA Naoki : -- pull_requests: +11570, 11571, 11572 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33504] configparser should use dict instead of OrderedDict in 3.7+

2019-01-31 Thread INADA Naoki
Change by INADA Naoki : -- pull_requests: +11570 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue33504] configparser should use dict instead of OrderedDict in 3.7+

2019-01-31 Thread INADA Naoki
Change by INADA Naoki : -- pull_requests: +11570, 11571 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue33504] configparser should use dict instead of OrderedDict in 3.7+

2018-06-05 Thread Łukasz Langa
Change by Łukasz Langa : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue33504] configparser should use dict instead of OrderedDict in 3.7+

2018-06-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 3a5b0d8988491d9408b22bceea6fd70b91345724 by Łukasz Langa (John Reese) in branch 'master': bpo-33504: Migrate configparser from OrderedDict to dict. (#6819) https://github.com/python/cpython/commit/3a5b0d8988491d9408b22bceea6fd70b91345724

[issue33504] configparser should use dict instead of OrderedDict in 3.7+

2018-05-14 Thread Łukasz Langa
Łukasz Langa added the comment: I am +1 to changing it to dict for Python 3.8. This use case is different from `namedtuple._asdict`. The type of the dictionary is for the purpose of internal storage of the parser. Unlike `namedtuple._asdict`, it is not exposed to the user. The purpose of cha

[issue33504] configparser should use dict instead of OrderedDict in 3.7+

2018-05-14 Thread John Reese
Change by John Reese : -- nosy: +lukasz.langa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue33504] configparser should use dict instead of OrderedDict in 3.7+

2018-05-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See msg308974 in issue32360. -- nosy: +rhettinger, serhiy.storchaka ___ Python tracker ___ ___ P

[issue33504] configparser should use dict instead of OrderedDict in 3.7+

2018-05-14 Thread John Reese
Change by John Reese : -- keywords: +patch pull_requests: +6504 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list m

[issue33504] configparser should use dict instead of OrderedDict in 3.7+

2018-05-14 Thread Eric V. Smith
Eric V. Smith added the comment: Like #33463, it will require a deprecation cycle. I'm not sure it's worth the hassle, but I wouldn't oppose it if someone wanted to do the work. 3.8 would be the first version where it could be added. -- nosy: +eric.smith versions: -Python 3.7 __

[issue33504] configparser should use dict instead of OrderedDict in 3.7+

2018-05-14 Thread John Reese
New submission from John Reese : The configparser module uses `collections.OrderedDict` as its default, but this is no longer necessary in 3.7+ due to the semantics of core dictionaries being ordered by design. configparser should just use `dict` by default now, instead. -- components