summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytes_add_endian.py
blob: 8cfffa7b6ace27ea36b92700257339d9d506a8d3 (plain) (blame)
1
2
3
4
5
6
7
8
# test bytes + other
try:
    import array
except ImportError:
    print("SKIP")
    raise SystemExit

print(b"123" + array.array('i', [1]))