micropython/tests/basics/bytearray_decode.py

7 wiersze
140 B
Python

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