]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add missing DISPATCH() (GH-27715)
authorMark Shannon <mark@hotpy.org>
Wed, 11 Aug 2021 08:25:26 +0000 (09:25 +0100)
committerGitHub <noreply@github.com>
Wed, 11 Aug 2021 08:25:26 +0000 (09:25 +0100)
Python/ceval.c

index f685c79b4cac0ae0abf02745838126ac29222007..104dbe44ecf2e401adba7c05f6d7365ae936cc4a 100644 (file)
@@ -1583,6 +1583,8 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, InterpreterFrame *frame, int thr
              }
         }
 
+    DISPATCH();
+
     tracing_dispatch:
     {
         int instr_prev = frame->f_lasti;