[Python-checkins] Remove a stray DISPATCH() (GH-97004)

brandtbucher webhook-mailer at python.org
Thu Sep 22 12:18:44 EDT 2022


https://github.com/python/cpython/commit/fb87aaafba5a156c4bb8cb326b30984b99fccbfc
commit: fb87aaafba5a156c4bb8cb326b30984b99fccbfc
branch: 3.11
author: Brandt Bucher <brandtbucher at microsoft.com>
committer: brandtbucher <brandtbucher at gmail.com>
date: 2022-09-22T09:18:37-07:00
summary:

Remove a stray DISPATCH() (GH-97004)

files:
M Python/ceval.c

diff --git a/Python/ceval.c b/Python/ceval.c
index f95e95c0589c..07a5461daf30 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -3582,7 +3582,6 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
             DISPATCH();
         }
 
-            DISPATCH();
         TARGET(STORE_ATTR_ADAPTIVE) {
             assert(cframe.use_tracing == 0);
             _PyAttrCache *cache = (_PyAttrCache *)next_instr;



More information about the Python-checkins mailing list