micropython/tests/basics/bytes_add_endian.py

10 wiersze
150 B
Python

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