2015-01-08 10:41:37 -05:00
|
|
|
# test construction of array from array with float type
|
|
|
|
|
2017-03-08 18:11:05 -05:00
|
|
|
try:
|
2021-04-23 15:26:42 -04:00
|
|
|
from uarray import array
|
2017-03-08 18:11:05 -05:00
|
|
|
except ImportError:
|
2021-04-23 15:26:42 -04:00
|
|
|
try:
|
|
|
|
from array import array
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
2015-01-08 10:41:37 -05:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
print(array("f", array("h", [1, 2])))
|
|
|
|
print(array("d", array("f", [1, 2])))
|