Files
shredos.x86_64/support/testing/tests/package/sample_python_msgpack.py

6 lines
127 B
Python
Raw Normal View History

2025-01-10 19:31:27 +00:00
import msgpack
packaed = msgpack.packb([1, 2, 3], use_bin_type=True)
assert msgpack.unpackb(packaed, raw=False) == [1, 2, 3]