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 h.venev
Recipients h.venev, josh.r, mark.dickinson, pitrou, rhettinger, skrah, tim.peters, vstinner
Date 2014-07-07.19:59:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404763163.82.0.288848058953.issue21922@psf.upfronthosting.co.za>
In-reply-to
Content
After optimization, tests on small ints (< 2**30)

Currently only addition, subtraction, negation and ~ are a bit slower (< 5%).

Most other operations are the same. Bitwise operators, //, %, ** and pow are faster.

Converting to and from strings is a bit faster. pickle, marshal and json are faster.

bm_nqueens is a bit slower. pystone is a bit faster. There are no performance regressions in other benchmarks.

When I fix +,- and ~ I will reupload the patch.
History
Date User Action Args
2014-07-07 19:59:23h.venevsetrecipients: + h.venev, tim.peters, rhettinger, mark.dickinson, pitrou, vstinner, skrah, josh.r
2014-07-07 19:59:23h.venevsetmessageid: <1404763163.82.0.288848058953.issue21922@psf.upfronthosting.co.za>
2014-07-07 19:59:23h.venevlinkissue21922 messages
2014-07-07 19:59:23h.venevcreate