| 1527 | check(tests4, 'little', signed=False) |
| 1528 | |
| 1529 | class myint(int): |
| 1530 | pass |
| 1531 | |
| 1532 | self.assertIs(type(myint.from_bytes(b'\x00', 'big')), myint) |
| 1533 | self.assertEqual(myint.from_bytes(b'\x01', 'big'), 1) |
no outgoing calls
searching dependent graphs…