My goal is to have only a minimal output from pythons exception handler (without the traceback). In a plain python script I can use :
sys.tracebacklimit=0
However in a notebook, this does not seem to work the way I want and the output is actually worse (longer). Is there any quick rescue to this issue?