Files
Core2forAWS-MicroPython/tests/basics/array_construct_endian.py
T

14 lines
284 B
Python
Raw Normal View History

# test construction of array.array from different objects
try:
2019-10-22 17:33:23 +11:00
from uarray import array
except ImportError:
2019-10-22 17:33:23 +11:00
try:
from array import array
except ImportError:
print("SKIP")
raise SystemExit
# raw copy from bytes, bytearray
print(array('h', b'12'))