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 pitrou
Recipients christian.heimes, gregory.p.smith, mark.dickinson, pitrou, vstinner
Date 2009-02-17.11:44:25
SpamBayes Score 0.0016421537
Marked as misclassified No
Message-id <1234871067.46.0.16318774882.issue4258@psf.upfronthosting.co.za>
In-reply-to
Content
Now with the latest patch, and under a 64-bit system (the same one
actually, but with a 64-bit distro):

* pybench is roughly 2% slower 
* timeit -s "a=100000000;b=777777" "a//b"
- before: 0.563 usec per loop
- after: 0.226 usec per loop
* timeit -s "a=100000000;b=777777" "a*b"
- before: 0.179 usec per loop
- after: 0.131 usec per loop
* timeit -s "a=100000000;b=777777" "a+b"
- before: 0.174 usec per loop
- after: 0.134 usec per loop
History
Date User Action Args
2009-02-17 11:44:27pitrousetrecipients: + pitrou, gregory.p.smith, mark.dickinson, vstinner, christian.heimes
2009-02-17 11:44:27pitrousetmessageid: <1234871067.46.0.16318774882.issue4258@psf.upfronthosting.co.za>
2009-02-17 11:44:25pitroulinkissue4258 messages
2009-02-17 11:44:25pitroucreate