Files
ICSP1-Works/week12/continueanyway.py
2026-06-01 02:02:53 +00:00

9 lines
218 B
Python

from sys import stderr
def ca(fn):
def call(*args,**kwargs):
try:
fn(*args,**kwargs)
except Exception as e:
print(type(e).__name__,":",e,file=stderr)
return call