()
| 298 | acquired = threading.Event() |
| 299 | |
| 300 | def hold_write() -> None: |
| 301 | with holder_lock.write_lock(): |
| 302 | acquired.set() |
| 303 | threading.Event().wait(timeout=2) |
| 304 | |
| 305 | thread = threading.Thread(target=hold_write) |
| 306 | thread.start() |
nothing calls this directly
no test coverage detected
searching dependent graphs…