We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
test_exceptions.py
1 parent 360f8ca commit e18354bCopy full SHA for e18354b
Lib/test/test_exceptions.py
@@ -1152,6 +1152,7 @@ class C(Exception):
1152
self.assertIs(c.__context__, b)
1153
self.assertIsNone(b.__context__)
1154
1155
+ @unittest.skip("TODO: RUSTPYTHON; Infinite loop")
1156
def test_no_hang_on_context_chain_cycle1(self):
1157
# See issue 25782. Cycle in context chain.
1158
@@ -1207,6 +1208,7 @@ class C(Exception):
1207
1208
self.assertIs(b.__context__, a)
1209
self.assertIs(a.__context__, c)
1210
1211
1212
def test_no_hang_on_context_chain_cycle3(self):
1213
# See issue 25782. Longer context chain with cycle.
1214
0 commit comments