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 pdox
Recipients pdox
Date 2017-11-02.09:56:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1509616579.32.0.213398074469.issue31921@psf.upfronthosting.co.za>
In-reply-to
Content
This is a refactor to move all the code involved in entering a frame (making it the active frame for the current tstate) and leaving a frame (removing it as an active frame, possibly destructing it or making it GC tracked) into private functions in frameobject.c.

The underlying goal of this change is to make it possible to add (as a performance feature) stack-allocated frames, in addition to the usual heap-allocated ones.
History
Date User Action Args
2017-11-02 09:56:19pdoxsetrecipients: + pdox
2017-11-02 09:56:19pdoxsetmessageid: <1509616579.32.0.213398074469.issue31921@psf.upfronthosting.co.za>
2017-11-02 09:56:19pdoxlinkissue31921 messages
2017-11-02 09:56:19pdoxcreate