diff options
author | Mark Shannon <mark@hotpy.org> | 2021-08-11 09:25:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-11 09:25:26 +0100 |
commit | c174eafc33999b9e773a5ea9561ad38886f1a0e6 (patch) | |
tree | c83ef03df8e676b997e8c574c7f492c8f0f345bb | |
parent | bfc2d5a5c4550ab3a2fadeb9459b4bd948ff61a2 (diff) | |
download | cpython-git-c174eafc33999b9e773a5ea9561ad38886f1a0e6.tar.gz |
Add missing DISPATCH() (GH-27715)
-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 f685c79b4c..104dbe44ec 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; |