mirror of
https://github.com/micropython/micropython.git
synced 2026-01-08 05:00:26 +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'
13 KiB
13 KiB