1try: 2 print(bytearray(b'').decode()) 3 print(bytearray(b'abc').decode()) 4except AttributeError: 5 print("SKIP") 6 raise SystemExit 7