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 xdegaye
Recipients benjamin.peterson, georg.brandl, jcea, miss-islington, serhiy.storchaka, vstinner, xdegaye
Date 2018-03-13.20:50:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1520974206.73.0.467229070634.issue17288@psf.upfronthosting.co.za>
In-reply-to
Content
The conditions used for the fix are still the same in 2.7: f->f_trace == NULL on a call event, f->f_lasti == -1 in a new frame and f->f_stacktop == NULL in a trace function with a non-line event except for yield statements.
There are minor differences: the YIELD_FROM opcode does not exist and function.__code__ is written as function.func_code.

Added a PR for 2.7.
History
Date User Action Args
2018-03-13 20:50:06xdegayesetrecipients: + xdegaye, georg.brandl, jcea, vstinner, benjamin.peterson, serhiy.storchaka, miss-islington
2018-03-13 20:50:06xdegayesetmessageid: <1520974206.73.0.467229070634.issue17288@psf.upfronthosting.co.za>
2018-03-13 20:50:06xdegayelinkissue17288 messages
2018-03-13 20:50:06xdegayecreate