Files
Core2forAWS-MicroPython/tests/float/array_construct.py
T

14 lines
300 B
Python
Raw Normal View History

# test construction of array from array with float type
2017-03-09 00:11:05 +01:00
try:
2019-10-22 17:33:23 +11:00
from uarray import array
2017-03-09 00:11:05 +01:00
except ImportError:
2019-10-22 17:33:23 +11:00
try:
from array import array
except ImportError:
print("SKIP")
raise SystemExit
print(array('f', array('h', [1, 2])))
print(array('d', array('f', [1, 2])))