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, vstinner
Date 2017-01-19.11:44:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1484826278.36.0.939398527826.issue29318@psf.upfronthosting.co.za>
In-reply-to
Content
Since mutating kw dict shouldn't affect caller's dict, caller and callee can't share the dict.

One possible optimization is using PyDict_Copy() to copy the dict.
It can reduce number of hash() calls.
History
Date User Action Args
2017-01-19 11:44:38methanesetrecipients: + methane, vstinner
2017-01-19 11:44:38methanesetmessageid: <1484826278.36.0.939398527826.issue29318@psf.upfronthosting.co.za>
2017-01-19 11:44:38methanelinkissue29318 messages
2017-01-19 11:44:38methanecreate