Skip to content

Commit afa0b67

Browse files
skirpichevvstinner
andauthored
Update Lib/test/support/__init__.py
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent 1cef882 commit afa0b67

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/test/support/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,8 +528,8 @@ def dec(*args, **kwargs):
528528
# detect evidence of double-rounding:
529529
x, y = 1e16, 2.9999 # use temporary values to defeat peephole optimizer
530530
skip_if_double_rounding = unittest.skipIf(x + y == 1e16 + 4,
531-
("accuracy not guaranteed on "
532-
"machines with double rounding"))
531+
"accuracy not guaranteed on "
532+
"machines with double rounding")
533533

534534

535535
def requires_zlib(reason='requires zlib'):

0 commit comments

Comments
 (0)