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
Next Next commit
fix test markers in test_exceptions.py
  • Loading branch information
ShaharNaveh committed Oct 22, 2025
commit e18354b990b6535a7f3517bfedd194b5c1b3c0d8
2 changes: 2 additions & 0 deletions Lib/test/test_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1152,6 +1152,7 @@ class C(Exception):
self.assertIs(c.__context__, b)
self.assertIsNone(b.__context__)

@unittest.skip("TODO: RUSTPYTHON; Infinite loop")
def test_no_hang_on_context_chain_cycle1(self):
# See issue 25782. Cycle in context chain.

Expand Down Expand Up @@ -1207,6 +1208,7 @@ class C(Exception):
self.assertIs(b.__context__, a)
self.assertIs(a.__context__, c)

@unittest.skip("TODO: RUSTPYTHON; Infinite loop")
def test_no_hang_on_context_chain_cycle3(self):
# See issue 25782. Longer context chain with cycle.

Expand Down