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 eryksun
Recipients doko, eryksun, vstinner
Date 2014-11-12.11:38:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1415792294.05.0.44644646515.issue22851@psf.upfronthosting.co.za>
In-reply-to
Content
This is related to the fix for issue 14432. gen_send_ex sets f->f_tstate to NULL, so PyFrame_IsRestricted segfaults: 

    #define PyFrame_IsRestricted(f) \
        ((f)->f_builtins != (f)->f_tstate->interp->builtins)
History
Date User Action Args
2014-11-12 11:38:14eryksunsetrecipients: + eryksun, doko, vstinner
2014-11-12 11:38:14eryksunsetmessageid: <1415792294.05.0.44644646515.issue22851@psf.upfronthosting.co.za>
2014-11-12 11:38:14eryksunlinkissue22851 messages
2014-11-12 11:38:13eryksuncreate