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 rhettinger
Recipients Markus Mohrhard, rhettinger
Date 2020-04-19.21:22:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
We should consider making this change just about everywhere in the standard library.  Besides avoiding a race condition, running a for loop over `d.copy().items()` is more memory efficient and possibly faster than a for loop over `list(d.items())`.
History
Date User Action Args
2020-04-19 21:22:26rhettingersetrecipients: + rhettinger, Markus Mohrhard
2020-04-19 21:22:26rhettingersetmessageid: <[email protected]>
2020-04-19 21:22:26rhettingerlinkissue40327 messages
2020-04-19 21:22:26rhettingercreate