()
| 437 | phase = [] |
| 438 | |
| 439 | def f(): |
| 440 | lock.acquire() |
| 441 | phase.append(None) |
| 442 | |
| 443 | self.wait_phase(phase, 2) |
| 444 | lock.release() |
| 445 | phase.append(None) |
| 446 | |
| 447 | with threading_helper.wait_threads_exit(): |
| 448 | # Thread blocked on lock.acquire() |
nothing calls this directly
no test coverage detected