math: add fma in py313 (#11968)

This commit is contained in:
Shantanu
2024-05-18 13:30:41 -07:00
committed by GitHub
parent 7f2a1a742d
commit c11b16882c

View File

@@ -123,3 +123,6 @@ def trunc(x: _SupportsTrunc[_T], /) -> _T: ...
if sys.version_info >= (3, 9):
def ulp(x: _SupportsFloatOrIndex, /) -> float: ...
if sys.version_info >= (3, 13):
def fma(x: _SupportsFloatOrIndex, y: _SupportsFloatOrIndex, z: _SupportsFloatOrIndex) -> float: ...