(self)
| 354 | del x |
| 355 | |
| 356 | def test_from_bytes(self): |
| 357 | self.assertIs(bool.from_bytes(b'\x00'*8, 'big'), False) |
| 358 | self.assertIs(bool.from_bytes(b'abcd', 'little'), True) |
| 359 | |
| 360 | def test_sane_len(self): |
| 361 | # this test just tests our assumptions about __len__ |
nothing calls this directly
no test coverage detected