summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-09-02 13:48:32 (GMT)
committerGitHub <noreply@github.com>2023-09-02 13:48:32 (GMT)
commit4ba18099b70c9f20f69357bac94d74f7c3238d7f (patch)
tree714317734a64e190397faeb422fd82195a901c90 /Misc/NEWS.d
parent1f3e797dc0451f48e649bcab2c9fd80224ffdac0 (diff)
downloadcpython-4ba18099b70c9f20f69357bac94d74f7c3238d7f.zip
cpython-4ba18099b70c9f20f69357bac94d74f7c3238d7f.tar.gz
cpython-4ba18099b70c9f20f69357bac94d74f7c3238d7f.tar.bz2
gh-108765: Python.h no longer includes <ieeefp.h> (#108781)
Remove also the HAVE_IEEEFP_H macro: remove ieeefp.h from the AC_CHECK_HEADERS() check of configure.ac.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/C API/2023-09-01-20-41-49.gh-issue-108765.5dXc1r.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2023-09-01-20-41-49.gh-issue-108765.5dXc1r.rst b/Misc/NEWS.d/next/C API/2023-09-01-20-41-49.gh-issue-108765.5dXc1r.rst
new file mode 100644
index 0000000..cc512df
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2023-09-01-20-41-49.gh-issue-108765.5dXc1r.rst
@@ -0,0 +1,4 @@
+``Python.h`` no longer includes the ``<ieeefp.h>`` standard header. It was
+included for the ``finite()`` function which is now provided by the
+``<math.h>`` header. It should now be included explicitly if needed. Remove
+also the ``HAVE_IEEEFP_H`` macro. Patch by Victor Stinner.