9 lines
218 B
Python
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 |