summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/int_bytes.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/int_bytes.py')
-rw-r--r--tests/basics/int_bytes.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/basics/int_bytes.py b/tests/basics/int_bytes.py
index 2f468da444..93c00bba10 100644
--- a/tests/basics/int_bytes.py
+++ b/tests/basics/int_bytes.py
@@ -1,7 +1,10 @@
print((10).to_bytes(1, "little"))
print((111111).to_bytes(4, "little"))
print((100).to_bytes(10, "little"))
-print((2**64).to_bytes(9, "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"))
+
+# 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)