(self)
| 395 | self._test_int("byte") |
| 396 | |
| 397 | def testUbyte(self): |
| 398 | self._test_int("ubyte") |
| 399 | self.assertRaises(AssertionError, ubyte, -1) |
| 400 | |
| 401 | def testShort(self): |
| 402 | self._test_int("short") |
nothing calls this directly
no test coverage detected