aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/specialize.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-04-26 00:14:30 +0200
committerGitHub <noreply@github.com>2022-04-26 00:14:30 +0200
commit64a54e511debaac6d3a6e53685824fce435c440c (patch)
tree7a549d47fbe8b480b14198555e427e57581db4ec /Python/specialize.c
parent20cc69528677b3e5191139d1cb587531f4893b55 (diff)
downloadcpython-64a54e511debaac6d3a6e53685824fce435c440c.tar.gz
cpython-64a54e511debaac6d3a6e53685824fce435c440c.zip
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
Diffstat (limited to 'Python/specialize.c')
-rw-r--r--Python/specialize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/specialize.c b/Python/specialize.c
index 3a8b768549c..9449ac11797 100644
--- a/Python/specialize.c
+++ b/Python/specialize.c
@@ -6,7 +6,7 @@
#include "pycore_long.h"
#include "pycore_moduleobject.h"
#include "pycore_object.h"
-#include "opcode.h"
+#include "pycore_opcode.h" // _PyOpcode_Caches
#include "structmember.h" // struct PyMemberDef, T_OFFSET_EX
#include <stdlib.h> // rand()