py/objint: In to_bytes(), allow length arg to be any int and check sign.

This commit is contained in:
Damien George
2017-06-15 14:21:02 +10:00
parent 8c5632a869
commit e269cabe3e
2 changed files with 10 additions and 1 deletions

View File

@@ -14,3 +14,9 @@ print((10).to_bytes(1, "big"))
print((100).to_bytes(10, "big"))
print(int.from_bytes(b"\0\0\0\0\0\0\0\0\0\x01", "big"))
print(int.from_bytes(b"\x01\0", "big"))
# negative number of bytes should raise an error
try:
(1).to_bytes(-1, "little")
except ValueError:
print("ValueError")