this is sys.excepthook after init_crashhandler set self.verbose_crash=True to use our full crashhandler, instead of a regular traceback with a short message (crash_handler_lite)
(self, etype, evalue, tb)
| 251 | atexit.register(unset_crashhandler) |
| 252 | |
| 253 | def excepthook(self, etype, evalue, tb): |
| 254 | """this is sys.excepthook after init_crashhandler |
| 255 | |
| 256 | set self.verbose_crash=True to use our full crashhandler, instead of |
| 257 | a regular traceback with a short message (crash_handler_lite) |
| 258 | """ |
| 259 | |
| 260 | if self.verbose_crash: |
| 261 | return self.crash_handler(etype, evalue, tb) |
| 262 | else: |
| 263 | return crashhandler.crash_handler_lite(etype, evalue, tb) |
| 264 | |
| 265 | @observe('ipython_dir') |
| 266 | def _ipython_dir_changed(self, change): |
nothing calls this directly
no outgoing calls
no test coverage detected