We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 165df16 commit 93a6cc5Copy full SHA for 93a6cc5
Lib/test/test_strtod.py
@@ -219,7 +219,8 @@ def test_bigcomp(self):
219
s = '{}e{}'.format(digits, exponent)
220
self.check_strtod(s)
221
222
- # TODO: RUSTPYTHON
+ @unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON, possibly flaky test on Windows?")
223
+ # TODO: RUSTPYTHON, Incorrectly rounded str->float conversion for -07e-321
224
@unittest.expectedFailure
225
def test_parsing(self):
226
# make '0' more likely to be chosen than other digits
0 commit comments