diff options
author | Victor Stinner <vstinner@python.org> | 2022-04-07 02:29:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 02:29:52 +0200 |
commit | 85addfb9c6496eb3d26082348cf5aca848c877ef (patch) | |
tree | b6a0cd3eda126249ee74b718cc7b2c2a3f4d5876 /Python/sysmodule.c | |
parent | 5c4d1f6e0e192653560ae2941a6677fbf4fbd1f2 (diff) | |
download | cpython-git-85addfb9c6496eb3d26082348cf5aca848c877ef.tar.gz |
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 <Python.h> header file.
Python.h includes directly Include/cpython/code.h instead.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index de4e10a7e1..ac44b803b2 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 |