circuitpython/tests/basics/bytes_add_endian.py

9 lines
141 B
Python
Raw Normal View History

# test bytes + other
try:
2023-08-22 11:15:46 -04:00
import array
except ImportError:
2023-08-22 11:15:46 -04:00
print("SKIP")
raise SystemExit
print(b"123" + array.array('i', [1]))