diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-14 23:50:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-14 23:50:28 (GMT) |
commit | 37b1d607bf0f1a9c1e89b1715349efc24dc180e0 (patch) | |
tree | 5115d4b858df130997a63f16c7144ffdda1f4c36 /Doc | |
parent | 7076bef8ba8836a19d5033f4ceb8eb9837de2301 (diff) | |
download | cpython-37b1d607bf0f1a9c1e89b1715349efc24dc180e0.zip cpython-37b1d607bf0f1a9c1e89b1715349efc24dc180e0.tar.gz cpython-37b1d607bf0f1a9c1e89b1715349efc24dc180e0.tar.bz2 |
po-35134: Move Include/funcobject.h to Include/cpython/ (GH-28958)
Remove redundant "#ifndef Py_LIMITED_API" in funcobject.h.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 0647774..a455683 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -572,6 +572,12 @@ 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. + (Contributed by Victor Stinner in :issue:`35134`.) + Deprecated ---------- |