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