(self)
| 471 | self.assertFalse(locked()) |
| 472 | |
| 473 | def testWithLock(self): |
| 474 | lock = threading.Lock() |
| 475 | self.boilerPlate(lock, lock.locked) |
| 476 | |
| 477 | def testWithRLock(self): |
| 478 | lock = threading.RLock() |
nothing calls this directly
no test coverage detected