diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2023-07-12 10:30:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-12 10:30:25 (GMT) |
commit | 2ca008e2b738b8c08b4bf46b2b23f315d6510d92 (patch) | |
tree | ca5812fe257be990c39b22c58c6d1249b17cbb6e /Python/ceval.c | |
parent | 42bc485a24f0f67751474bd1697e1beb4a783b9a (diff) | |
download | cpython-2ca008e2b738b8c08b4bf46b2b23f315d6510d92.zip cpython-2ca008e2b738b8c08b4bf46b2b23f315d6510d92.tar.gz cpython-2ca008e2b738b8c08b4bf46b2b23f315d6510d92.tar.bz2 |
gh-105481: move Python/opcode_metadata.h to Include/internal/pycore_opcode_metadata.h (#106673)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 63150a9..de44085 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -14,6 +14,7 @@ #include "pycore_object.h" // _PyObject_GC_TRACK() #include "pycore_moduleobject.h" // PyModuleObject #include "pycore_opcode.h" // EXTRA_CASES +#include "pycore_opcode_metadata.h" #include "pycore_opcode_utils.h" // MAKE_FUNCTION_* #include "pycore_pyerrors.h" // _PyErr_GetRaisedException() #include "pycore_pystate.h" // _PyInterpreterState_GET() @@ -30,7 +31,6 @@ #include "pycore_frame.h" #include "frameobject.h" // _PyInterpreterFrame_GetLine #include "opcode.h" -#include "opcode_metadata.h" #include "pydtrace.h" #include "setobject.h" #include "structmember.h" // struct PyMemberDef, T_OFFSET_EX |