How do you nicely capture exceptions in Python threads?
If you have a threaded python app sys.excepthook does not capture errors in children.
When a child raises an exception the parent will continue to run without any problems thus making debugging a bit difficult.
1 Answer