(self)
| 753 | await wrong_loop_in_cond() |
| 754 | |
| 755 | async def test_timeout_in_block(self): |
| 756 | condition = asyncio.Condition() |
| 757 | async with condition: |
| 758 | with self.assertRaises(asyncio.TimeoutError): |
| 759 | await asyncio.wait_for(condition.wait(), timeout=0.5) |
| 760 | |
| 761 | async def test_cancelled_error_wakeup(self): |
| 762 | # Test that a cancelled error, received when awaiting wakeup, |
nothing calls this directly
no test coverage detected