1 2 3 4 5 6 7 8 9 10
# test construction of array.array from different objects try: from array import array except ImportError: print("SKIP") raise SystemExit # raw copy from bytes, bytearray print(array('h', b'12'))