1# test construction of array.array from different objects 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 12# raw copy from bytes, bytearray 13print(array('h', b'12')) 14