We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c0be4b commit fdab7e0Copy full SHA for fdab7e0
Lib/test/test_strtod.py
@@ -219,9 +219,8 @@ def test_bigcomp(self):
219
s = '{}e{}'.format(digits, exponent)
220
self.check_strtod(s)
221
222
- @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
+ @unittest.skip("TODO: RUSTPYTHON; flaky test")
225
def test_parsing(self):
226
# make '0' more likely to be chosen than other digits
227
digits = '000000123456789'
0 commit comments