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 josh.r, mark.dickinson, rhettinger, serhiy.storchaka, vstinner, zbyrne
Date 2014-07-16.06:23:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1405491805.74.0.488213535637.issue21955@psf.upfronthosting.co.za>
In-reply-to
Content
Thank you Zach. I found even small regression.

Before:

$ ./python -m timeit -s "x = 10"  "x+x; x+x; x+x; x+x; x+x; x+x; x+x; x+x; x+x; x+x"
1000000 loops, best of 3: 1.51 usec per loop

After:

$ ./python -m timeit -s "x = 10"  "x+x; x+x; x+x; x+x; x+x; x+x; x+x; x+x; x+x; x+x"
1000000 loops, best of 3: 1.6 usec per loop
History
Date User Action Args
2014-07-16 06:23:25serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, mark.dickinson, vstinner, josh.r, zbyrne
2014-07-16 06:23:25serhiy.storchakasetmessageid: <1405491805.74.0.488213535637.issue21955@psf.upfronthosting.co.za>
2014-07-16 06:23:25serhiy.storchakalinkissue21955 messages
2014-07-16 06:23:25serhiy.storchakacreate