summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytes_compare_array.py
blob: ad378de70c56bb5146ca0e32375ecee222ddfe7c (plain) (blame)
1
2
3
4
5
6
7
8
9
try:
    import array
except ImportError:
    print("SKIP")
    raise SystemExit

print(array.array('b', [1, 2]) in b'\x01\x02\x03')
# CPython gives False here
#print(b"\x01\x02\x03" == array.array("B", [1, 2, 3]))