We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4b771a commit 03f8ab4Copy full SHA for 03f8ab4
Lib/test/test_concurrent_futures/executor.py
@@ -79,8 +79,9 @@ def test_map_exception(self):
79
var: val
80
for var, val in tb.tb_frame.f_locals.items()
81
if isinstance(val, Exception)
82
+ and var in val.__traceback__.tb_frame.f_locals
83
},
- msg=f"traceback frames should not contain any exception",
84
+ msg=f"the raised exception's traceback should not contain an exception that captures itself in its own traceback",
85
)
86
87
@support.requires_resource('walltime')
0 commit comments