(condition: Condition, timeout: Optional[float])
| 82 | |
| 83 | |
| 84 | async def _async_cond_wait(condition: Condition, timeout: Optional[float]) -> bool: |
| 85 | try: |
| 86 | return await wait_for(condition.wait(), timeout) |
| 87 | except asyncio.TimeoutError: |
| 88 | return False |
| 89 | |
| 90 | |
| 91 | def _cond_wait(condition: threading.Condition, timeout: Optional[float]) -> bool: |
no test coverage detected