Return context of current exception
(self)
| 70 | return self.current_exception[0].ExceptionRecord[0].ExceptionCode |
| 71 | |
| 72 | def get_exception_context(self): |
| 73 | """Return context of current exception""" |
| 74 | return self.current_exception[0].ContextRecord[0] |
| 75 | |
| 76 | def single_step(self): |
| 77 | """Make the current thread to single step""" |
no outgoing calls
no test coverage detected