summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2024-01-12 11:58:23 (GMT)
committerGitHub <noreply@github.com>2024-01-12 11:58:23 (GMT)
commit30e6cbdba22d946dacc3f2e19c884b2e1891d58c (patch)
tree50ef18098a02e61c079b8a6c4477496b27b06adf /Python/ceval.c
parent29e2839cd6af5c90cfd7abe800b045b6dcee0c05 (diff)
downloadcpython-30e6cbdba22d946dacc3f2e19c884b2e1891d58c.zip
cpython-30e6cbdba22d946dacc3f2e19c884b2e1891d58c.tar.gz
cpython-30e6cbdba22d946dacc3f2e19c884b2e1891d58c.tar.bz2
GH-113860: Get rid of `_PyUOpExecutorObject` (GH-113954)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index b3b542f..49388cd 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -25,7 +25,6 @@
#include "pycore_tuple.h" // _PyTuple_ITEMS()
#include "pycore_typeobject.h" // _PySuper_Lookup()
#include "pycore_uop_ids.h" // Uops
-#include "pycore_uops.h" // _PyUOpExecutorObject
#include "pycore_pyerrors.h"
#include "pycore_dict.h"
@@ -739,7 +738,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
}
/* State shared between Tier 1 and Tier 2 interpreter */
- _PyUOpExecutorObject *current_executor = NULL;
+ _PyExecutorObject *current_executor = NULL;
/* Local "register" variables.
* These are cached values from the frame and code object. */