1# test construction of array from array with float type 2 3try: 4 from uarray import array 5except ImportError: 6 try: 7 from array import array 8 except ImportError: 9 print("SKIP") 10 raise SystemExit 11 12print(array("f", array("h", [1, 2]))) 13print(array("d", array("f", [1, 2]))) 14