Release the module-level lock acquired by calling _acquireLock().
()
| 235 | _lock.acquire() |
| 236 | |
| 237 | def _releaseLock(): |
| 238 | """ |
| 239 | Release the module-level lock acquired by calling _acquireLock(). |
| 240 | """ |
| 241 | if _lock: |
| 242 | _lock.release() |
| 243 | |
| 244 | |
| 245 | # Prevent a held logging lock from blocking a child from logging. |
no test coverage detected