diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-02-09 12:11:49 +0800 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-02-09 12:11:49 +0800 |
commit | 194117a066fa0af6cbe712223195e4ff02037298 (patch) | |
tree | cffc8cd397aa91146d63ef0d180eab13b23a9dcd /tests | |
parent | 28631537bd14d0497c8d51d796cdda45b3719890 (diff) | |
download | micropython-194117a066fa0af6cbe712223195e4ff02037298.tar.gz micropython-194117a066fa0af6cbe712223195e4ff02037298.zip |
objstr: Fix bytes creation from array of long ints.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/basics/bytes_construct.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/basics/bytes_construct.py b/tests/basics/bytes_construct.py index 793d5115e1..de6b5d9545 100644 --- a/tests/basics/bytes_construct.py +++ b/tests/basics/bytes_construct.py @@ -11,3 +11,6 @@ print(bytes(bytearray(4))) print(bytes(array('b', [1, 2]))) print(bytes(array('h', [1, 2]))) print(bytes(array('I', [1, 2]))) + +# long ints +print(ord(bytes([14953042807679334000 & 0xff]))) |