diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-03-04 00:13:27 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-03-04 00:13:27 +0300 |
commit | 3ab6aa3a6d0506e805caa19369bef279c1c789b4 (patch) | |
tree | 1232b7c9b796c907a7202dcd46f5008724058b05 /tests/basics/int_bytes.py | |
parent | 89e570a5b4025976da66123032c58611f0f6cb17 (diff) |
tests/basic: Split tests into working with small ints and not working.
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.
Diffstat (limited to 'tests/basics/int_bytes.py')
-rw-r--r-- | tests/basics/int_bytes.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/basics/int_bytes.py b/tests/basics/int_bytes.py index 2f468da44..45965ed46 100644 --- a/tests/basics/int_bytes.py +++ b/tests/basics/int_bytes.py @@ -1,7 +1,6 @@ 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")) |