summaryrefslogtreecommitdiff
path: root/tests/basics/int_bytes.py
blob: a96a4e65ff028d27058ed3db6575103a1532a2b5 (plain)
1
2
3
4
5
6
7
print((10).to_bytes(1, "little"))
print((111111).to_bytes(4, "little"))
print((100).to_bytes(10, "little"))

# check that extra zero bytes don't change the internal int value
print(int.from_bytes(bytes(20), "little") == 0)
print(int.from_bytes(b"\x01" + bytes(20), "little") == 1)