mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
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]
|