Set values of attributes as ready to start debugging.
(self)
| 54 | return canonic |
| 55 | |
| 56 | def reset(self): |
| 57 | """Set values of attributes as ready to start debugging.""" |
| 58 | import linecache |
| 59 | linecache.checkcache() |
| 60 | self.botframe = None |
| 61 | self._set_stopinfo(None, None) |
| 62 | |
| 63 | def trace_dispatch(self, frame, event, arg): |
| 64 | """Dispatch a trace function for debugged frames based on the event. |
no test coverage detected