diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-15 11:06:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 11:06:05 (GMT) |
commit | 105582e74c1817bc6a9d99bcb6540b34a3367292 (patch) | |
tree | 2657be191e1aabb028cbcfda2fa66b9cc72fdeac /Doc/whatsnew/3.11.rst | |
parent | 063abd931f064a4b6b478b0b6e9aa13ee38d2cff (diff) | |
download | cpython-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.rst | 10 |
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 |