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 rhettinger
Recipients alex, collinwinter, loewis, pitrou, rhettinger, terry.reedy
Date 2009-05-30.03:14:45
SpamBayes Score 0.07324276
Marked as misclassified No
Message-id <1243653289.28.0.139618064922.issue6133@psf.upfronthosting.co.za>
In-reply-to
Content
[AP]
> Does this optimization actually help in real-world cases?

Yes and no.  Yes, there are real world cases like ','.join and
'{}'.format that are dramatically sped-up.  No, there are probably no
real-world programs that are sped-up significantly in their entirety --
no one optimization will ever do that (Amdahl's law).  Pretty much
anytime the substitution gets made there is a savings on second and
subsequent calls (just like any form of caching).
History
Date User Action Args
2009-05-30 03:14:50rhettingersetrecipients: + rhettinger, loewis, collinwinter, terry.reedy, pitrou, alex
2009-05-30 03:14:49rhettingersetmessageid: <1243653289.28.0.139618064922.issue6133@psf.upfronthosting.co.za>
2009-05-30 03:14:47rhettingerlinkissue6133 messages
2009-05-30 03:14:46rhettingercreate