mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-28 21:42:10 +00:00
6 lines
127 B
Python
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]
|