]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Update NaNs handling description in `c-api/float.rst` (#141179)
authorW. H. Wang <mattwang44@gmail.com>
Fri, 7 Nov 2025 13:34:49 +0000 (21:34 +0800)
committerGitHub <noreply@github.com>
Fri, 7 Nov 2025 13:34:49 +0000 (14:34 +0100)
Clarified the behavior of NaNs on IEEE platforms regarding signaling and quiet NaNs.

Doc/c-api/float.rst

index 1085c32a53707122b5c5250310bf357265f2c213..edee498a0b80f3920f024d0405680c514c056660 100644 (file)
@@ -113,8 +113,8 @@ NaNs (if such things exist on the platform) isn't handled correctly, and
 attempting to unpack a bytes string containing an IEEE INF or NaN will raise an
 exception.
 
-Note that NaNs type may not be preserved on IEEE platforms (silent NaN become
-quiet), for example on x86 systems in 32-bit mode.
+Note that NaNs type may not be preserved on IEEE platforms (signaling NaN become
+quiet NaN), for example on x86 systems in 32-bit mode.
 
 On non-IEEE platforms with more precision, or larger dynamic range, than IEEE
 754 supports, not all values can be packed; on non-IEEE platforms with less