summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytes_add_array.py
blob: b17556d83cbafea36a4b9e843bfb4d9222f8fa00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# test bytes + other
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]))