Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Mark failing tests
  • Loading branch information
moreal committed Jan 21, 2026
commit 4eecd15a2af28d47cd756687966160cebfb76823
1 change: 1 addition & 0 deletions Lib/test/test_reprlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ def test_frozenset(self):
eq(r(frozenset({1, 2, 3, 4, 5, 6})), "frozenset({1, 2, 3, 4, 5, 6})")
eq(r(frozenset({1, 2, 3, 4, 5, 6, 7})), "frozenset({1, 2, 3, 4, 5, 6, ...})")

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_numbers(self):
for x in [123, 1.0 / 3]:
self.assertEqual(r(x), repr(x))
Expand Down
Loading