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 vstinner
Recipients brett.cannon, vstinner, yselivanov
Date 2016-02-13.01:07:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1455325636.24.0.139322095554.issue26145@psf.upfronthosting.co.za>
In-reply-to
Content
TODO: implement a fast-path for PyCode_Optimize() avoiding completly the "expensive" code transformer API, before the first call to sys.set_code_transformer().

It would avoid list <=> tuple conversions for code constants, and the need of creating two code objects.

In practice, this fast-path should be taken in most cases.
History
Date User Action Args
2016-02-13 01:07:16vstinnersetrecipients: + vstinner, brett.cannon, yselivanov
2016-02-13 01:07:16vstinnersetmessageid: <1455325636.24.0.139322095554.issue26145@psf.upfronthosting.co.za>
2016-02-13 01:07:16vstinnerlinkissue26145 messages
2016-02-13 01:07:16vstinnercreate