1# test bytes + other 2try: 3 import uarray as array 4except ImportError: 5 try: 6 import array 7 except ImportError: 8 print("SKIP") 9 raise SystemExit 10 11# should be byteorder-neutral 12print(b"123" + array.array('h', [0x1515])) 13 14print(b"\x01\x02" + array.array('b', [1, 2])) 15