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 skrah
Recipients rhettinger, serhiy.storchaka, skrah
Date 2016-10-11.11:45:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476186308.85.0.135300165503.issue28397@psf.upfronthosting.co.za>
In-reply-to
Content
The difference in favor of doit() is even more pronounced with this
loop (also sorry for the uninitialized variable, but that does not
make a difference for benchmarking):

=====================================
for (i = 0; i < 10000; i++) {
        for (j = 0; j < 10000; j++) {
            count += doit(i, j);
        }
    }
======================================
History
Date User Action Args
2016-10-11 11:45:08skrahsetrecipients: + skrah, rhettinger, serhiy.storchaka
2016-10-11 11:45:08skrahsetmessageid: <1476186308.85.0.135300165503.issue28397@psf.upfronthosting.co.za>
2016-10-11 11:45:08skrahlinkissue28397 messages
2016-10-11 11:45:08skrahcreate