Files
shredos.x86_64/support/testing/tests/package/sample_python_msgpack.py
2025-01-10 19:34:56 +00:00

6 lines
127 B
Python

import msgpack
packaed = msgpack.packb([1, 2, 3], use_bin_type=True)
assert msgpack.unpackb(packaed, raw=False) == [1, 2, 3]