summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorSergey B Kirpichev <skirpichev@gmail.com>2024-11-01 22:04:31 (GMT)
committerGitHub <noreply@github.com>2024-11-01 22:04:31 (GMT)
commit8477951a1c460ff9b7dc7c54e7bf9b66b1722459 (patch)
tree56f840c81726ce48b4a99f0ee4eb358ccef0f38f /Objects
parent28b148fb32e4548b461137d18d1ab6d366395d36 (diff)
downloadcpython-8477951a1c460ff9b7dc7c54e7bf9b66b1722459.zip
cpython-8477951a1c460ff9b7dc7c54e7bf9b66b1722459.tar.gz
cpython-8477951a1c460ff9b7dc7c54e7bf9b66b1722459.tar.bz2
gh-120026: soft deprecate Py_HUGE_VAL macro (#120027)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Diffstat (limited to 'Objects')
-rw-r--r--Objects/floatobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index d66863f..7e14a8a 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -2390,7 +2390,7 @@ PyFloat_Unpack2(const char *data, int le)
if (e == 0x1f) {
if (f == 0) {
/* Infinity */
- return sign ? -Py_HUGE_VAL : Py_HUGE_VAL;
+ return sign ? -Py_INFINITY : Py_INFINITY;
}
else {
/* NaN */