()
| 514 | events.append("holder:released") |
| 515 | |
| 516 | async def waiter() -> None: |
| 517 | await holding.wait() |
| 518 | async with lock_type(lock_path): |
| 519 | events.append("waiter:acquired") |
| 520 | |
| 521 | await asyncio.gather(holder(), waiter()) # propagates a false-positive Deadlock |
| 522 |
no outgoing calls
no test coverage detected