(self)
| 870 | s.iter_unpack(b"12") |
| 871 | |
| 872 | def test_uninstantiable(self): |
| 873 | iter_unpack_type = type(struct.Struct(">ibcp").iter_unpack(b"")) |
| 874 | self.assertRaises(TypeError, iter_unpack_type) |
| 875 | |
| 876 | def test_iterate(self): |
| 877 | s = struct.Struct('>IB') |
nothing calls this directly
no test coverage detected