summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.11.rst
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-10-15 11:06:05 (GMT)
committerGitHub <noreply@github.com>2021-10-15 11:06:05 (GMT)
commit105582e74c1817bc6a9d99bcb6540b34a3367292 (patch)
tree2657be191e1aabb028cbcfda2fa66b9cc72fdeac /Doc/whatsnew/3.11.rst
parent063abd931f064a4b6b478b0b6e9aa13ee38d2cff (diff)
downloadcpython-105582e74c1817bc6a9d99bcb6540b34a3367292.zip
cpython-105582e74c1817bc6a9d99bcb6540b34a3367292.tar.gz
cpython-105582e74c1817bc6a9d99bcb6540b34a3367292.tar.bz2
bpo-45434: Remove Include/eval.h header file (GH-28973)
Move Include/eval.h content into Include/ceval.h and Include/cpython/ceval.h, and remove Include/eval.h.
Diffstat (limited to 'Doc/whatsnew/3.11.rst')
-rw-r--r--Doc/whatsnew/3.11.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 2e95228..994fb84 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -573,11 +573,11 @@ Porting to Python 3.11
(Contributed by Victor Stinner in :issue:`45434`.)
* The non-limited API files ``cellobject.h``, ``classobject.h``, ``context.h``,
- ``funcobject.h``, ``genobject.h`` and ``longintrepr.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.
+ ``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
+ 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