2014-04-08 17:40:58 -04:00
|
|
|
print((10).to_bytes(1, "little"))
|
2020-02-14 15:12:20 -05:00
|
|
|
print((-10).to_bytes(1, "little", signed=True))
|
2019-05-12 11:17:29 -04:00
|
|
|
# Test fitting in length that's not a power of two.
|
|
|
|
print((0x10000).to_bytes(3, 'little'))
|
2014-04-08 17:40:58 -04:00
|
|
|
print((111111).to_bytes(4, "little"))
|
2020-02-14 15:12:20 -05:00
|
|
|
print((-111111).to_bytes(4, "little", signed=True))
|
2014-04-08 17:40:58 -04:00
|
|
|
print((100).to_bytes(10, "little"))
|
2020-02-14 15:12:20 -05:00
|
|
|
print((-100).to_bytes(10, "little", signed=True))
|
2017-04-24 22:07:02 -04:00
|
|
|
|
|
|
|
# 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)
|
2017-06-14 23:56:21 -04:00
|
|
|
|
|
|
|
# big-endian conversion
|
|
|
|
print((10).to_bytes(1, "big"))
|
2020-02-14 15:12:20 -05:00
|
|
|
print((-10).to_bytes(1, "big", signed=True))
|
2017-06-14 23:56:21 -04:00
|
|
|
print((100).to_bytes(10, "big"))
|
2020-02-14 15:12:20 -05:00
|
|
|
print((-100).to_bytes(10, "big", signed=True))
|
2017-06-14 23:56:21 -04:00
|
|
|
print(int.from_bytes(b"\0\0\0\0\0\0\0\0\0\x01", "big"))
|
|
|
|
print(int.from_bytes(b"\x01\0", "big"))
|
2017-06-15 00:21:02 -04:00
|
|
|
|
|
|
|
# negative number of bytes should raise an error
|
|
|
|
try:
|
|
|
|
(1).to_bytes(-1, "little")
|
|
|
|
except ValueError:
|
|
|
|
print("ValueError")
|
2019-05-09 03:19:29 -04:00
|
|
|
|
|
|
|
# too small buffer should raise an error
|
|
|
|
try:
|
|
|
|
(256).to_bytes(1, "little")
|
|
|
|
except OverflowError:
|
|
|
|
print("OverflowError")
|
|
|
|
|
2020-02-14 15:12:20 -05:00
|
|
|
# negative numbers should raise an error if signed=False
|
2019-05-09 03:19:29 -04:00
|
|
|
try:
|
|
|
|
(-256).to_bytes(2, "little")
|
|
|
|
except OverflowError:
|
|
|
|
print("OverflowError")
|
2020-02-14 15:12:20 -05:00
|
|
|
|
|
|
|
try:
|
|
|
|
(-256).to_bytes(2, "little", signed=False)
|
|
|
|
except OverflowError:
|
|
|
|
print("OverflowError")
|