Release the I/O thread lock.
(self)
| 976 | self.lock.acquire() |
| 977 | |
| 978 | def release(self): |
| 979 | """ |
| 980 | Release the I/O thread lock. |
| 981 | """ |
| 982 | if self.lock: |
| 983 | self.lock.release() |
| 984 | |
| 985 | def setLevel(self, level): |
| 986 | """ |
no outgoing calls
no test coverage detected