Closed as not planned
Description
sorted()
does not enforce that every item in the tuple must be comparable:
items: list[tuple[int, object]] = [(1, object()), (1, object())]
sorted(items)
Lines 1762 to 1767 in e5c5318
sorted()
does not enforce that every item in the tuple must be comparable:
items: list[tuple[int, object]] = [(1, object()), (1, object())]
sorted(items)
Lines 1762 to 1767 in e5c5318