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 methane
Recipients methane
Date 2020-07-29.00:29:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1595982578.69.0.880267074289.issue41431@roundup.psfhosted.org>
In-reply-to
Content
Although there are dict.copy() and PyDict_Copy(), dict_merge can be used for copying dict.

* d={}; d.update(orig)
* d=dict(orig)
* d=orig.copy() # orig has many dummy keys.
History
Date User Action Args
2020-07-29 00:29:38methanesetrecipients: + methane
2020-07-29 00:29:38methanesetmessageid: <1595982578.69.0.880267074289.issue41431@roundup.psfhosted.org>
2020-07-29 00:29:38methanelinkissue41431 messages
2020-07-29 00:29:38methanecreate