1# test construction of bytearray 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(bytes(array("f", [1, 2.3]))) 13