[Python-checkins] Add missing DISPATCH() (GH-27715)

markshannon webhook-mailer at python.org
Wed Aug 11 04:25:37 EDT 2021


https://github.com/python/cpython/commit/c174eafc33999b9e773a5ea9561ad38886f1a0e6
commit: c174eafc33999b9e773a5ea9561ad38886f1a0e6
branch: main
author: Mark Shannon <mark at hotpy.org>
committer: markshannon <mark at hotpy.org>
date: 2021-08-11T09:25:26+01:00
summary:

Add missing DISPATCH() (GH-27715)

files:
M Python/ceval.c

diff --git a/Python/ceval.c b/Python/ceval.c
index f685c79b4cac0..104dbe44ecf2e 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;



More information about the Python-checkins mailing list