Message370877
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 ??? | |
| Date | User | Action | Args | | 2020-06-07 06:37:51 | Dennis Sweeney | set | recipients: + Dennis Sweeney, rhettinger | | 2020-06-07 06:37:51 | Dennis Sweeney | set | messageid: <1591511871.59.0.816756368504.issue40890@roundup.psfhosted.org> | | 2020-06-07 06:37:51 | Dennis Sweeney | link | issue40890 messages | | 2020-06-07 06:37:51 | Dennis Sweeney | create | | |