(exc_type, exc_value, exc_tb)
| 105 | |
| 106 | oldHook = sys.excepthook |
| 107 | def excepthook(exc_type, exc_value, exc_tb): |
| 108 | tb = "".join(traceback.format_exception(exc_type, exc_value, exc_tb)) |
| 109 | Log.Error(tb) |
| 110 | showError2(tb, app) |
| 111 | |
| 112 | sys.excepthook = excepthook |
| 113 | signal.signal(signal.SIGINT, signal.SIG_DFL) |
nothing calls this directly
no test coverage detected