Compare commits

..

No commits in common. "1ccb14455d3ec68247667958b51c4ad5d0afe274" and "0f8b299b4f815fbb3ea8cf4a0596005ecf9d3511" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View File

@ -180,8 +180,7 @@ def test_acm_embedded_nursery_propagates_enter_err(
with tractor.devx.maybe_open_crash_handler( with tractor.devx.maybe_open_crash_handler(
pdb=debug_mode, pdb=debug_mode,
) as bxerr: ) as bxerr:
if bxerr: assert not bxerr.value
assert not bxerr.value
async with ( async with (
wraps_tn_that_always_cancels() as tn, wraps_tn_that_always_cancels() as tn,

View File

@ -3003,7 +3003,6 @@ async def _maybe_enter_pm(
[BaseException|BaseExceptionGroup], [BaseException|BaseExceptionGroup],
bool, bool,
] = lambda err: not is_multi_cancelled(err), ] = lambda err: not is_multi_cancelled(err),
**_pause_kws,
): ):
if ( if (
@ -3030,7 +3029,6 @@ async def _maybe_enter_pm(
await post_mortem( await post_mortem(
api_frame=api_frame, api_frame=api_frame,
tb=tb, tb=tb,
**_pause_kws,
) )
return True return True