()
| 674 | real_acquire_tx(blocking=blocking, timeout=timeout) |
| 675 | |
| 676 | def acquire_write_in_thread() -> None: |
| 677 | writer_tid["id"] = threading.get_ident() |
| 678 | try: |
| 679 | lock.acquire_write(timeout=5) |
| 680 | except RuntimeError as exc: |
| 681 | errors["writer"] = exc |
| 682 | |
| 683 | lock._acquire_transaction_lock = gated # ty: ignore[invalid-assignment] |
| 684 | thread = threading.Thread(target=acquire_write_in_thread) |
nothing calls this directly
no test coverage detected
searching dependent graphs…