Skip to content

Commit 243db20

Browse files
[3.13] gh-123811: test that round() can return signed zero (GH-123829) (#123938)
gh-123811: test that round() can return signed zero (GH-123829) (cherry picked from commit d2b9b6f) Co-authored-by: Sergey B Kirpichev <[email protected]>
1 parent 5bf32d1 commit 243db20

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Lib/test/test_float.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ def test_short_repr(self):
830830
self.assertEqual(repr(float(negs)), str(float(negs)))
831831

832832
@support.requires_IEEE_754
833-
class RoundTestCase(unittest.TestCase):
833+
class RoundTestCase(unittest.TestCase, FloatsAreIdenticalMixin):
834834

835835
def test_inf_nan(self):
836836
self.assertRaises(OverflowError, round, INF)
@@ -860,10 +860,10 @@ def test_large_n(self):
860860

861861
def test_small_n(self):
862862
for n in [-308, -309, -400, 1-2**31, -2**31, -2**31-1, -2**100]:
863-
self.assertEqual(round(123.456, n), 0.0)
864-
self.assertEqual(round(-123.456, n), -0.0)
865-
self.assertEqual(round(1e300, n), 0.0)
866-
self.assertEqual(round(1e-320, n), 0.0)
863+
self.assertFloatsAreIdentical(round(123.456, n), 0.0)
864+
self.assertFloatsAreIdentical(round(-123.456, n), -0.0)
865+
self.assertFloatsAreIdentical(round(1e300, n), 0.0)
866+
self.assertFloatsAreIdentical(round(1e-320, n), 0.0)
867867

868868
def test_overflow(self):
869869
self.assertRaises(OverflowError, round, 1.6e308, -308)

0 commit comments

Comments
 (0)