From 85addfb9c6496eb3d26082348cf5aca848c877ef Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 7 Apr 2022 02:29:52 +0200 Subject: bpo-35134: Remove the Include/code.h header file (GH-32385) Remove the Include/code.h header file. C extensions should only include the main header file. Python.h includes directly Include/cpython/code.h instead. --- Python/sysmodule.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/sysmodule.c') diff --git a/Python/sysmodule.c b/Python/sysmodule.c index de4e10a7e11..ac44b803b23 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -31,7 +31,6 @@ Data members: #include "pycore_structseq.h" // _PyStructSequence_InitType() #include "pycore_tuple.h" // _PyTuple_FromArray() -#include "code.h" #include "frameobject.h" // PyFrame_GetBack() #include "pydtrace.h" #include "osdefs.h" // DELIM -- cgit v1.2.3