2015-01-08 15:41:37 +00:00
|
|
|
# test construction of array from array with float type
|
|
|
|
|
2017-03-08 23:11:05 +00:00
|
|
|
try:
|
|
|
|
from array import array
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-08 05:00:57 +01:00
|
|
|
raise SystemExit
|
2015-01-08 15:41:37 +00:00
|
|
|
|
|
|
|
print(array('f', array('h', [1, 2])))
|
|
|
|
print(array('d', array('f', [1, 2])))
|