diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-15 00:39:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 00:39:58 (GMT) |
commit | 77b24ba505744532d7cfd721b1c92d205e145180 (patch) | |
tree | 5d4ce2941123f8da62efe2f20d4be69cf97c40bc /Doc/whatsnew | |
parent | 37b1d607bf0f1a9c1e89b1715349efc24dc180e0 (diff) | |
download | cpython-77b24ba505744532d7cfd721b1c92d205e145180.zip cpython-77b24ba505744532d7cfd721b1c92d205e145180.tar.gz cpython-77b24ba505744532d7cfd721b1c92d205e145180.tar.bz2 |
bpo-35134: Move Include/cellobject.h to Include/cpython/ (GH-28964)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index a455683..734cf15 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -572,10 +572,11 @@ Porting to Python 3.11 header provides functions like ``printf()`` and ``fopen()``. (Contributed by Victor Stinner in :issue:`45434`.) -* The non-limited API file ``funcobject.h`` has been moved to the - ``Include/cpython`` directory. This file must not be included directly, as it - is already included in ``Python.h``: :ref:`Include Files <api-includes>`. If - it has been included directly, consider including ``Python.h`` instead. +* The non-limited API files ``cellobject.h`` and ``funcobject.h`` have been + moved to the ``Include/cpython`` directory. These files must not be included + directly, as they are already included in ``Python.h``: :ref:`Include Files + <api-includes>`. If they have been included directly, consider including + ``Python.h`` instead. (Contributed by Victor Stinner in :issue:`35134`.) Deprecated |