3ab6aa3a6d
Tests which don't work with small ints are suffixed with _intbig.py. Some of these may still work with long long ints and need to be reclassified later.
7 lines
277 B
Python
7 lines
277 B
Python
print((10).to_bytes(1, "little"))
|
|
print((111111).to_bytes(4, "little"))
|
|
print((100).to_bytes(10, "little"))
|
|
print(int.from_bytes(b"\x00\x01\0\0\0\0\0\0", "little"))
|
|
print(int.from_bytes(b"\x01\0\0\0\0\0\0\0", "little"))
|
|
print(int.from_bytes(b"\x00\x01\0\0\0\0\0\0", "little"))
|