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