(self)
| 236 | sys.settrace(self.trace_dispatch) |
| 237 | |
| 238 | def stop_trace(self): |
| 239 | if self.monitoring_tracer: |
| 240 | self.monitoring_tracer.stop_trace() |
| 241 | else: |
| 242 | sys.settrace(None) |
| 243 | |
| 244 | def reset(self): |
| 245 | """Set values of attributes as ready to start debugging.""" |
no outgoing calls