mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
10 lines
150 B
Python
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]))
|