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

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