mirror of
https://github.com/micropython/micropython.git
synced 2026-01-11 22:47:17 +01:00
Without bugfix:
struct.pack('>Q', 16)
b'\x00\x00\x00\x10\x00\x00\x00\x00'
With bugfix:
struct.pack('>Q', 16)
b'\x00\x00\x00\x00\x00\x00\x00\x10'
1.2 KiB
1.2 KiB