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 christian.heimes, jcea, python-dev, rhettinger, serhiy.storchaka, taleinat, vstinner
Date 2013-08-19.16:17:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376929049.57.0.911985941608.issue18771@psf.upfronthosting.co.za>
In-reply-to
Content
Victor, this should also work for dictionaries as well.   Fundamentally, the concepts of loop-unrolling and exploiting cache locality should apply to any hash table implementation.

That said, the dicts are more complex than sets due to 1) storing the hash/key/value 2) key-sharing, and 3) different access patterns.  So, it will require more effort than just porting over the patch.  Feel free to open a new tracker item for that one.  It will take more work but will potentially have a much greater pay-off.
History
Date User Action Args
2013-08-19 16:17:29rhettingersetrecipients: + rhettinger, jcea, vstinner, taleinat, christian.heimes, python-dev, serhiy.storchaka
2013-08-19 16:17:29rhettingersetmessageid: <1376929049.57.0.911985941608.issue18771@psf.upfronthosting.co.za>
2013-08-19 16:17:29rhettingerlinkissue18771 messages
2013-08-19 16:17:29rhettingercreate