]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-46640: Py_NAN now uses the C99 NAN constant (GH-31134)
authorVictor Stinner <vstinner@python.org>
Sun, 6 Feb 2022 12:13:04 +0000 (13:13 +0100)
committerGitHub <noreply@github.com>
Sun, 6 Feb 2022 12:13:04 +0000 (13:13 +0100)
commit54842e4311bb0e34012d1984b42eab41eeeaea6a
tree78eabd2693540ebdc112a4fabc5edf4778a60a4a
parentf1e29cea8516d04c16d94bcb7bf24d4e2d32ffce
bpo-46640: Py_NAN now uses the C99 NAN constant (GH-31134)

Building Python now requires a C99 <math.h> header file providing a
NAN constant, or the __builtin_nan() built-in function. If a platform
does not support Not-a-Number (NaN), the Py_NO_NAN macro can be
defined in the pyconfig.h file.
Doc/whatsnew/3.11.rst
Include/pymath.h
Misc/NEWS.d/next/Build/2022-02-04-21-26-50.bpo-46640.HXUmQp.rst [new file with mode: 0644]