()
| 416 | |
| 417 | |
| 418 | def test_SerializableLock_acquire_blocking(): |
| 419 | a = SerializableLock("a") |
| 420 | assert a.acquire(blocking=True) |
| 421 | assert not a.acquire(blocking=False) |
| 422 | a.release() |
| 423 | |
| 424 | |
| 425 | def test_funcname(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…