summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2021-08-11 08:25:26 (GMT)
committerGitHub <noreply@github.com>2021-08-11 08:25:26 (GMT)
commitc174eafc33999b9e773a5ea9561ad38886f1a0e6 (patch)
treec83ef03df8e676b997e8c574c7f492c8f0f345bb /Python
parentbfc2d5a5c4550ab3a2fadeb9459b4bd948ff61a2 (diff)
downloadcpython-c174eafc33999b9e773a5ea9561ad38886f1a0e6.zip
cpython-c174eafc33999b9e773a5ea9561ad38886f1a0e6.tar.gz
cpython-c174eafc33999b9e773a5ea9561ad38886f1a0e6.tar.bz2
Add missing DISPATCH() (GH-27715)
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c2
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;