We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4c729d commit 2d62e7bCopy full SHA for 2d62e7b
Lib/test/test_capi/test_float.py
@@ -187,6 +187,9 @@ def test_pack_unpack_roundtrip_for_nans(self):
187
if (not arch_32bit) or (sys.platform == 'win32'):
188
sizes = (2, 4, 8)
189
else:
190
+ # Skip 16-bit float and 32-bit float tests on x86 (32-bit), since
191
+ # these tests fail. The problem is that sNaN become qNaN just by
192
+ # the calling convention, there is no way to preserve sNaN.
193
sizes = (8,)
194
195
for _ in range(1000):
0 commit comments