(self)
| 17 | self.lock = _thread.allocate_lock() |
| 18 | |
| 19 | def test_initlock(self): |
| 20 | #Make sure locks start locked |
| 21 | self.assertFalse(self.lock.locked(), |
| 22 | "Lock object is not initialized unlocked.") |
| 23 | |
| 24 | def test_release(self): |
| 25 | # Test self.lock.release() |
nothing calls this directly
no test coverage detected