diff options
author | Christian Heimes <christian@python.org> | 2022-07-08 13:25:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-08 13:25:53 (GMT) |
commit | 36a3372d5105ffbd083a56cc8442a81a5bfeb19b (patch) | |
tree | 2966ac6e07dd2bc80605cb707c0e76a8ef75b2c4 /Python | |
parent | 73a1800b55bc018cb2ac2a38c49e368bfe4a98d4 (diff) | |
download | cpython-36a3372d5105ffbd083a56cc8442a81a5bfeb19b.zip cpython-36a3372d5105ffbd083a56cc8442a81a5bfeb19b.tar.gz cpython-36a3372d5105ffbd083a56cc8442a81a5bfeb19b.tar.bz2 |
[3.11] gh-94215: Fix error handling for line-tracing events (GH-94681) (GH-94688)
* Re-enable crasher
* Fix error handling for line-tracing events
* blurb add
(cherry picked from commit 23ee4a8067506e6c9c47748185653617413f7a60)
Co-authored-by: Brandt Bucher <brandtbucher@microsoft.com>
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 32f471f..1a54545 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -5642,16 +5642,25 @@ handle_eval_breaker: err = maybe_call_line_trace(tstate->c_tracefunc, tstate->c_traceobj, tstate, frame, instr_prev); + // Reload possibly changed frame fields: + stack_pointer = _PyFrame_GetStackPointer(frame); + frame->stacktop = -1; + // next_instr is only reloaded if tracing *does not* raise. + // This is consistent with the behavior of older Python + // versions. If a trace function sets a new f_lineno and + // *then* raises, we use the *old* location when searching + // for an exception handler, displaying the traceback, and + // so on: if (err) { - /* trace function raised an exception */ + // next_instr wasn't incremented at the start of this + // instruction. Increment it before handling the error, + // so that it looks the same as a "normal" instruction: next_instr++; goto error; } - /* Reload possibly changed frame fields */ + // Reload next_instr. Don't increment it, though, since + // we're going to re-dispatch to the "true" instruction now: next_instr = frame->prev_instr; - - stack_pointer = _PyFrame_GetStackPointer(frame); - frame->stacktop = -1; } } } |