[issue40273] mappingproxy isn't reversible

2020-05-21 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue40273] mappingproxy isn't reversible

2020-05-21 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: I think this issue can be closed thanks to Zackery Spytz. -- nosy: +remi.lapeyre ___ Python tracker ___

[issue40273] mappingproxy isn't reversible

2020-05-07 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 02fa0ea9c1073e4476c9bde3d7112f5dd964aa57 by Zackery Spytz in branch 'master': bpo-40273: Reversible mappingproxy (FH-19513) https://github.com/python/cpython/commit/02fa0ea9c1073e4476c9bde3d7112f5dd964aa57 -- __

[issue40273] mappingproxy isn't reversible

2020-04-14 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 2.0 -> 3.0 pull_requests: +18866 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19513 ___ Python tracker

[issue40273] mappingproxy isn't reversible

2020-04-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: This seems reasonable. +1 -- keywords: +easy (C) versions: -Python 3.8 ___ Python tracker ___ __

[issue40273] mappingproxy isn't reversible

2020-04-13 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue40273] mappingproxy isn't reversible

2020-04-13 Thread jack1142
Change by jack1142 : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue40273] mappingproxy isn't reversible

2020-04-13 Thread jack1142
New submission from jack1142 : Starting in version 3.8, dicts are reversible so it would make sense if mapping proxy were also reversible. Especially that `reversed(proxied_dict.keys())` does work. -- messages: 366315 nosy: jack1142 priority: normal severity: normal status: open title