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, python-dev, serhiy.storchaka, vstinner
Date 2017-01-17.18:08:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1484676510.94.0.916196331348.issue29259@psf.upfronthosting.co.za>
In-reply-to
Content
> Maybe it's the expensive price of creating a temporary dictionary?

Please see the patch on issue29295.
PyDict_GetItemString() is bad part, too.
It's create str object, calc hash, lookup dict, and dealloc the str object.
History
Date User Action Args
2017-01-17 18:08:30methanesetrecipients: + methane, vstinner, python-dev, serhiy.storchaka
2017-01-17 18:08:30methanesetmessageid: <1484676510.94.0.916196331348.issue29259@psf.upfronthosting.co.za>
2017-01-17 18:08:30methanelinkissue29259 messages
2017-01-17 18:08:30methanecreate