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