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 218f6b3 commit a7f5ed9Copy full SHA for a7f5ed9
Lib/test/test_capi/test_float.py
@@ -179,7 +179,8 @@ def test_pack_unpack_roundtrip(self):
179
else:
180
self.assertEqual(value2, value)
181
182
- @unittest.skipUnless(HAVE_IEEE_754, "requires IEEE 754")
+ @unittest.skipUnless(HAVE_IEEE_754 and sys.platform != 'win32',
183
+ "requires IEEE 754")
184
def test_pack_unpack_roundtrip_nans(self):
185
pack = _testcapi.float_pack
186
unpack = _testcapi.float_unpack
0 commit comments