(self)
| 475 | self.boilerPlate(lock, lock.locked) |
| 476 | |
| 477 | def testWithRLock(self): |
| 478 | lock = threading.RLock() |
| 479 | self.boilerPlate(lock, lock._is_owned) |
| 480 | |
| 481 | def testWithCondition(self): |
| 482 | lock = threading.Condition() |
nothing calls this directly
no test coverage detected