(self, app)
| 64 | """sys.excepthook for IPython itself, leaves a detailed report on disk.""" |
| 65 | |
| 66 | def __init__(self, app): |
| 67 | contact_name = release.author |
| 68 | contact_email = release.author_email |
| 69 | bug_tracker = 'https://github.com/ipython/ipython/issues' |
| 70 | super(IPAppCrashHandler,self).__init__( |
| 71 | app, contact_name, contact_email, bug_tracker |
| 72 | ) |
| 73 | |
| 74 | def make_report(self,traceback): |
| 75 | """Return a string containing a crash report.""" |
nothing calls this directly
no outgoing calls
no test coverage detected