This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Dennis Sweeney
Recipients Dennis Sweeney, rhettinger
Date 2020-06-07.06:37:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1591511871.59.0.816756368504.issue40890@roundup.psfhosted.org>
In-reply-to
Content
I think this will also require typing.MappingProxyType to change a bit, since it would make a proxy's underlying dict accessible: >>> d = dict() >>> proxy = MappingProxyType(d) >>> type(proxy.items()) is type(d.items()) # should be False True >>> proxy.items().mapping is d # should be False ???
History
Date User Action Args
2020-06-07 06:37:51Dennis Sweeneysetrecipients: + Dennis Sweeney, rhettinger
2020-06-07 06:37:51Dennis Sweeneysetmessageid: <1591511871.59.0.816756368504.issue40890@roundup.psfhosted.org>
2020-06-07 06:37:51Dennis Sweeneylinkissue40890 messages
2020-06-07 06:37:51Dennis Sweeneycreate