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 taleinat
Recipients rhettinger, taleinat, terry.reedy
Date 2018-11-09.21:09:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1541797748.67.0.788709270274.issue35196@psf.upfronthosting.co.za>
In-reply-to
Content
> On my machine, 2.7.15 (without squeezing) and 3.7.1 (with squeezing) IDLE results (average seconds).
>
> from timeit import timeit
> timeit("print('nnn '*500)", number=10)  # Exp1: .0357, .0355
> timeit("for i in range(500): print(i)", number=4)  # Exp2: 1.45, 1.70
> timeit("print(*range(500))", number=4)  # Exp3: about 5*, 4.85

Comparing 3.7.0 to current master, I'm seeing about a 4% slowdown on the second experiment.  That's significant, but probably not what Raymond or Serhiy are worried about.  Regardless, I've nearly got a PR with an optimization ready.
History
Date User Action Args
2018-11-09 21:09:08taleinatsetrecipients: + taleinat, rhettinger, terry.reedy
2018-11-09 21:09:08taleinatsetmessageid: <1541797748.67.0.788709270274.issue35196@psf.upfronthosting.co.za>
2018-11-09 21:09:08taleinatlinkissue35196 messages
2018-11-09 21:09:08taleinatcreate