diff options
author | Mark Shannon <mark@hotpy.org> | 2021-08-11 08:25:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-11 08:25:26 (GMT) |
commit | c174eafc33999b9e773a5ea9561ad38886f1a0e6 (patch) | |
tree | c83ef03df8e676b997e8c574c7f492c8f0f345bb /Python | |
parent | bfc2d5a5c4550ab3a2fadeb9459b4bd948ff61a2 (diff) | |
download | cpython-c174eafc33999b9e773a5ea9561ad38886f1a0e6.zip cpython-c174eafc33999b9e773a5ea9561ad38886f1a0e6.tar.gz cpython-c174eafc33999b9e773a5ea9561ad38886f1a0e6.tar.bz2 |
Add missing DISPATCH() (GH-27715)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index f685c79..104dbe4 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1583,6 +1583,8 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, InterpreterFrame *frame, int thr } } + DISPATCH(); + tracing_dispatch: { int instr_prev = frame->f_lasti; |