diff options
author | Victor Stinner <vstinner@python.org> | 2022-04-07 00:29:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 00:29:52 (GMT) |
commit | 85addfb9c6496eb3d26082348cf5aca848c877ef (patch) | |
tree | b6a0cd3eda126249ee74b718cc7b2c2a3f4d5876 /Objects | |
parent | 5c4d1f6e0e192653560ae2941a6677fbf4fbd1f2 (diff) | |
download | cpython-85addfb9c6496eb3d26082348cf5aca848c877ef.zip cpython-85addfb9c6496eb3d26082348cf5aca848c877ef.tar.gz cpython-85addfb9c6496eb3d26082348cf5aca848c877ef.tar.bz2 |
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 'Objects')
-rw-r--r-- | Objects/codeobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/codeobject.c b/Objects/codeobject.c index 7d50b40..e872b39 100644 --- a/Objects/codeobject.c +++ b/Objects/codeobject.c @@ -1,7 +1,6 @@ #include <stdbool.h> #include "Python.h" -#include "code.h" #include "opcode.h" #include "structmember.h" // PyMemberDef #include "pycore_code.h" // _PyCodeConstructor |