mirror of
https://github.com/micropython/micropython.git
synced 2025-09-05 17:30:41 +02:00
11 lines
210 B
Python
11 lines
210 B
Python
# test construction of array.array from different objects
|
|
|
|
try:
|
|
from array import array
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
# raw copy from bytes, bytearray
|
|
print(array('h', b'12'))
|