diff options
author | Damien George <damien.p.george@gmail.com> | 2015-04-25 23:16:39 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-04-25 23:16:39 +0100 |
commit | 271d18eb08ec488ee45f8e6cd852e8236074f082 (patch) | |
tree | f5ba5d1b28cb48e72334fb079a5d6ef148083970 /tests/basics/int_bytes.py | |
parent | 7c8b4c1a8b8278d864649c127857e34a6bd29504 (diff) |
py: Support conversion of bignum to bytes.
This gets int.to_bytes working for bignum, and also struct.pack with 'q'
and 'Q' args on 32-bit machines.
Addresses issue #1155.
Diffstat (limited to 'tests/basics/int_bytes.py')
-rw-r--r-- | tests/basics/int_bytes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/basics/int_bytes.py b/tests/basics/int_bytes.py index 45965ed46..2f468da44 100644 --- a/tests/basics/int_bytes.py +++ b/tests/basics/int_bytes.py @@ -1,6 +1,7 @@ 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")) |