aclicheroux
Initial commit
e0c66e4
raw
history blame contribute delete
No virus
229 Bytes
import sys
import traceback
def run(code, task):
try:
code()
except Exception as e:
print(f"{task}: {type(e).__name__}", file=sys.stderr)
print(traceback.format_exc(), file=sys.stderr)