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