objstr: Fix bytes creation from array of long ints.

This commit is contained in:
Paul Sokolovsky
2015-02-09 12:11:49 +08:00
parent 28631537bd
commit 194117a066
2 changed files with 4 additions and 1 deletions

View File

@@ -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])))