Skip to content
Prev Previous commit
Update Include/pymath.h
Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
  • Loading branch information
vstinner and skirpichev authored May 29, 2024
commit b45447fa5a544dc214d13cf2a77679e96fbe4954
2 changes: 1 addition & 1 deletion Include/pymath.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

// Py_IS_FINITE(X)
// Return 1 if float or double arg is neither infinite nor NAN, else 0.
// Soft deprecated since Python 3.14.
// Soft deprecated since Python 3.14, use isfinite() instead.
#define Py_IS_FINITE(X) isfinite(X)

// Py_INFINITY: Value that evaluates to a positive double infinity.
Expand Down