()
| 75 | |
| 76 | |
| 77 | def _release_locks() -> None: |
| 78 | # Completed the fork, reset all the locks in the child. |
| 79 | for lock in _forkable_locks: |
| 80 | if lock.locked(): |
| 81 | lock.release() |
| 82 | |
| 83 | |
| 84 | async def _async_cond_wait(condition: Condition, timeout: Optional[float]) -> bool: |
no test coverage detected