We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64340fd commit 1bc2803Copy full SHA for 1bc2803
Lib/unittest/result.py
@@ -233,8 +233,9 @@ def _remove_unittest_tb_frames(self, tb):
233
while tb and not self._is_relevant_tb_level(tb):
234
prev = tb
235
tb = tb.tb_next
236
- if prev is not None:
237
- prev.tb_next = None
+ # TODO: RUSTPYTHON; traceback.tb_next is not writable yet #3857
+ # if prev is not None:
238
+ # prev.tb_next = None
239
240
def __repr__(self):
241
return ("<%s run=%i errors=%i failures=%i>" %
0 commit comments