Release the I/O thread lock.
(self)
| 927 | self.lock.acquire() |
| 928 | |
| 929 | def release(self): |
| 930 | """ |
| 931 | Release the I/O thread lock. |
| 932 | """ |
| 933 | if self.lock: |
| 934 | self.lock.release() |
| 935 | |
| 936 | def setLevel(self, level): |
| 937 | """ |
no outgoing calls
no test coverage detected