1try: 2 import uarray as array 3except ImportError: 4 try: 5 import array 6 except ImportError: 7 print("SKIP") 8 raise SystemExit 9 10print(array.array('b', [1, 2]) in b'\x01\x02\x03') 11# CPython gives False here 12#print(b"\x01\x02\x03" == array.array("B", [1, 2, 3])) 13