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 serhiy.storchaka
Recipients gregory.p.smith, josh.r, maciej.szulik, nnorwitz, rhettinger, serhiy.storchaka, vstinner
Date 2016-03-12.05:26:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1457760388.88.0.344589924105.issue26314@psf.upfronthosting.co.za>
In-reply-to
Content
Dicts are hard optimized for string keys due to using them for globals and attributes lookup. Sets are optimized too, but rather for accident. We can be sure that dicts will be always optimized, but set optimization can be eliminated for the sake of simplification or if it will be proven that special casing strings has enough large negative effect on non-string items.
History
Date User Action Args
2016-03-12 05:26:29serhiy.storchakasetrecipients: + serhiy.storchaka, nnorwitz, rhettinger, gregory.p.smith, vstinner, maciej.szulik, josh.r
2016-03-12 05:26:28serhiy.storchakasetmessageid: <1457760388.88.0.344589924105.issue26314@psf.upfronthosting.co.za>
2016-03-12 05:26:28serhiy.storchakalinkissue26314 messages
2016-03-12 05:26:28serhiy.storchakacreate