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

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