(self)
| 129 | # TODO: RUSTPYTHON |
| 130 | @unittest.expectedFailure |
| 131 | def test_ident(self): |
| 132 | self.assertIsInstance(_thread.get_ident(), int, |
| 133 | "_thread.get_ident() returned a non-integer") |
| 134 | self.assertGreater(_thread.get_ident(), 0) |
| 135 | |
| 136 | def test_LockType(self): |
| 137 | self.assertIsInstance(_thread.allocate_lock(), _thread.LockType, |
nothing calls this directly
no test coverage detected