summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2021-11-19 15:16:49 (GMT)
committerGitHub <noreply@github.com>2021-11-19 15:16:49 (GMT)
commit337cb480e9dc1d27594ebd87a0045d00ec8b1c3a (patch)
tree6cf0a9ea5560ef9ab89287f2a61cdeb8589cd987 /Python
parent29e5874d5a9205c488f783356d0cf3f115399327 (diff)
downloadcpython-337cb480e9dc1d27594ebd87a0045d00ec8b1c3a.zip
cpython-337cb480e9dc1d27594ebd87a0045d00ec8b1c3a.tar.gz
cpython-337cb480e9dc1d27594ebd87a0045d00ec8b1c3a.tar.bz2
bpo-45709: Fix tracing when exception is handled. (GH-29638)
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 9d3ff74..9e56b50 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -5093,10 +5093,7 @@ exception_unwind:
JUMPTO(handler);
/* Resume normal execution */
frame->f_state = FRAME_EXECUTING;
- frame->f_lasti = handler;
- NEXTOPARG();
- PRE_DISPATCH_GOTO();
- DISPATCH_GOTO();
+ DISPATCH();
}
exiting: