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 8a86b38 commit 9b59aa4Copy full SHA for 9b59aa4
tests/float/float_parse_doubleprec.py
@@ -21,11 +21,11 @@
21
print(float("100.000000000000000000e-309"))
22
23
# ensure repr() adds an extra digit when needed for accurate parsing
24
-if float(repr(2.0 ** 100)) != (2.0 ** 100):
25
- # this test is needed for coverage, but it will
26
- # only work if MICROPY_COMP_FLOAT_CONST == 1,
27
- # so we should not make the test case fail
28
- pass
+if float(repr(2.0**100)) != (2.0**100):
+ # this test is needed for coverage, but it will
+ # only work if MICROPY_COMP_FLOAT_CONST == 1,
+ # so we should not make the test case fail
+ pass
29
30
# ensure repr does not add meaningless extra digits (1.234999999999)
31
print(repr(1.2345))
0 commit comments