(self)
| 799 | self.assertEqual(my_struct.pack(12345), b'\x30\x39') |
| 800 | |
| 801 | def test_repr(self): |
| 802 | s = struct.Struct('=i2H') |
| 803 | self.assertEqual(repr(s), f'Struct({s.format!r})') |
| 804 | |
| 805 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 806 | def test_c_complex_round_trip(self): |
nothing calls this directly
no test coverage detected