diff options
author | Damien George <damien.p.george@gmail.com> | 2017-06-15 14:21:02 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-06-15 14:21:02 +1000 |
commit | e269cabe3ed8bed1b7181359febb686edbb748ae (patch) | |
tree | ff91eb8d3d4a1c0cbd276262c36f847043e20a06 /tests/basics | |
parent | 8c5632a869f10445dc5091c39ec73ca49cf83454 (diff) | |
download | micropython-e269cabe3ed8bed1b7181359febb686edbb748ae.tar.gz micropython-e269cabe3ed8bed1b7181359febb686edbb748ae.zip |
py/objint: In to_bytes(), allow length arg to be any int and check sign.
Diffstat (limited to 'tests/basics')
-rw-r--r-- | tests/basics/int_bytes.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/basics/int_bytes.py b/tests/basics/int_bytes.py index 5198792625..d1837ea75c 100644 --- a/tests/basics/int_bytes.py +++ b/tests/basics/int_bytes.py @@ -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") |