()
| 605 | result: dict[str, object] = {} |
| 606 | |
| 607 | def acquirer() -> None: |
| 608 | try: |
| 609 | lock.acquire_read() |
| 610 | result["ok"] = True |
| 611 | except BaseException as exc: |
| 612 | result["exc"] = exc |
| 613 | |
| 614 | thread = threading.Thread(target=acquirer, daemon=True) |
| 615 | thread.start() |
nothing calls this directly
no test coverage detected
searching dependent graphs…