7 lines
140 B
Python
7 lines
140 B
Python
|
try:
|
||
|
print(bytearray(b'').decode())
|
||
|
print(bytearray(b'abc').decode())
|
||
|
except AttributeError:
|
||
|
print("SKIP")
|
||
|
raise SystemExit
|