Come posso scrivere un blocco try
/ except
che rileva tutte le eccezioni?
sys.stderr
e possibilmente registrati i messaggi di errore rilevati. Questa è un'eccezione perfettamente valida e comune.
try: whatever() except Exception as e: exp_capture()
:?