Files
RustPython/tests/snippets/test_struct.py
2018-10-14 09:43:09 +02:00

11 lines
161 B
Python

import struct
data = struct.pack('IH', 14, 12)
assert data == bytes([14, 0, 0, 0, 12, 0])
v1, v2 = struct.unpack('IH', data)
assert v1 == 14
assert v2 == 12