()
| 318 | acquired = threading.Event() |
| 319 | |
| 320 | def hold_read() -> None: |
| 321 | with holder_lock.read_lock(): |
| 322 | acquired.set() |
| 323 | threading.Event().wait(timeout=2) |
| 324 | |
| 325 | thread = threading.Thread(target=hold_read) |
| 326 | thread.start() |
nothing calls this directly
no test coverage detected
searching dependent graphs…