circuitpython/tests/basics/bytes_add_endian.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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]))