Acquire the module-level lock for serializing access to shared data. This should be released with _releaseLock().
()
| 226 | _lock = threading.RLock() |
| 227 | |
| 228 | def _acquireLock(): |
| 229 | """ |
| 230 | Acquire the module-level lock for serializing access to shared data. |
| 231 | |
| 232 | This should be released with _releaseLock(). |
| 233 | """ |
| 234 | if _lock: |
| 235 | _lock.acquire() |
| 236 | |
| 237 | def _releaseLock(): |
| 238 | """ |
no test coverage detected