10 lines
307 B
Python
10 lines
307 B
Python
# Test that int.from_bytes() for small number of bytes generates
|
|
# small int.
|
|
import micropython
|
|
|
|
micropython.heap_lock()
|
|
print(int.from_bytes(b"1", "little"))
|
|
print(int.from_bytes(b"12", "little"))
|
|
print(int.from_bytes(b"2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", "little"))
|
|
micropython.heap_unlock()
|