(self)
| 479 | self.boilerPlate(lock, lock._is_owned) |
| 480 | |
| 481 | def testWithCondition(self): |
| 482 | lock = threading.Condition() |
| 483 | def locked(): |
| 484 | return lock._is_owned() |
| 485 | self.boilerPlate(lock, locked) |
| 486 | |
| 487 | def testWithSemaphore(self): |
| 488 | lock = threading.Semaphore() |
nothing calls this directly
no test coverage detected