summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytearray_decode.py
blob: b5e1cb419bda79854213d848aeaff1048d037cac (plain) (blame)
1
2
3
4
5
6
try:
    print(bytearray(b'').decode())
    print(bytearray(b'abc').decode())
except AttributeError:
    print("SKIP")
    raise SystemExit