micropython/tests/basics/bytes_add_endian.py
2017-03-09 00:07:19 +01:00

10 lines
150 B
Python

# test bytes + other
try:
import array
except ImportError:
import sys
print("SKIP")
sys.exit()
print(b"123" + array.array('i', [1]))