From 64a54e511debaac6d3a6e53685824fce435c440c Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 26 Apr 2022 00:14:30 +0200 Subject: gh-91719: Add pycore_opcode.h internal header file (#91906) Move the following API from Include/opcode.h (public C API) to a new Include/internal/pycore_opcode.h header file (internal C API): * EXTRA_CASES * _PyOpcode_Caches * _PyOpcode_Deopt * _PyOpcode_Jump * _PyOpcode_OpName * _PyOpcode_RelativeJump --- Objects/codeobject.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Objects/codeobject.c') diff --git a/Objects/codeobject.c b/Objects/codeobject.c index 4fc4b8fec6..e3e4ca159a 100644 --- a/Objects/codeobject.c +++ b/Objects/codeobject.c @@ -5,6 +5,7 @@ #include "structmember.h" // PyMemberDef #include "pycore_code.h" // _PyCodeConstructor #include "pycore_interp.h" // PyInterpreterState.co_extra_freefuncs +#include "pycore_opcode.h" // _PyOpcode_Deopt #include "pycore_pystate.h" // _PyInterpreterState_GET() #include "pycore_tuple.h" // _PyTuple_ITEMS() #include "clinic/codeobject.c.h" -- cgit v1.2.1