We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d24471 commit 02c1dffCopy full SHA for 02c1dff
Lib/test/test_float.py
@@ -949,6 +949,7 @@ def test_None_ndigits(self):
949
self.assertEqual(x, 2)
950
self.assertIsInstance(x, int)
951
952
+ @support.cpython_only
953
def test_round_with_none_arg_direct_call(self):
954
for val in [(1.0).__round__(None),
955
round(1.0),
Lib/test/test_int.py
@@ -517,6 +517,7 @@ def test_issue31619(self):
517
self.assertEqual(int('1_2_3_4_5_6_7_8_9', 16), 0x123456789)
518
self.assertEqual(int('1_2_3_4_5_6_7', 32), 1144132807)
519
520
521
522
for val in [(1).__round__(None),
523
round(1),
0 commit comments