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 /Doc | |
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 'Doc')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 4c9b32d..31cdf10 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -1210,7 +1210,7 @@ Porting to Python 3.11 explicitly include the header files after ``#include <Python.h>``. (Contributed by Victor Stinner in :issue:`45434`.) -* The non-limited API files ``cellobject.h``, ``classobject.h``, ``context.h``, +* The non-limited API files ``cellobject.h``, ``classobject.h``, ``code.h``, ``context.h``, ``funcobject.h``, ``genobject.h`` and ``longintrepr.h`` have been moved to the ``Include/cpython`` directory. Moreover, the ``eval.h`` header file was removed. These files must not be included directly, as they are already |