Acquire the I/O thread lock.
(self)
| 920 | self.lock._at_fork_reinit() |
| 921 | |
| 922 | def acquire(self): |
| 923 | """ |
| 924 | Acquire the I/O thread lock. |
| 925 | """ |
| 926 | if self.lock: |
| 927 | self.lock.acquire() |
| 928 | |
| 929 | def release(self): |
| 930 | """ |
no outgoing calls
no test coverage detected