circuitpython/tests/basics/bytearray_decode.py
2021-04-26 15:47:41 -07:00

7 lines
140 B
Python

try:
print(bytearray(b'').decode())
print(bytearray(b'abc').decode())
except AttributeError:
print("SKIP")
raise SystemExit