Acquire the I/O thread lock.
(self)
| 966 | self.lock._at_fork_reinit() |
| 967 | |
| 968 | def acquire(self): |
| 969 | """ |
| 970 | Acquire the I/O thread lock. |
| 971 | """ |
| 972 | if self.lock: |
| 973 | self.lock.acquire() |
| 974 | |
| 975 | def release(self): |
| 976 | """ |
no outgoing calls
no test coverage detected