1# test bytes + other 2try: 3 import uarray as array 4except ImportError: 5 try: 6 import array 7 except ImportError: 8 print("SKIP") 9 raise SystemExit 10 11print(b"123" + array.array('i', [1])) 12