circuitpython/tests/basics/bytes_compare_array.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
215 B
Python
Raw Normal View History

try:
2023-08-22 11:15:46 -04:00
import array
except ImportError:
2023-08-22 11:15:46 -04:00
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]))