(self)
| 230 | return canonic |
| 231 | |
| 232 | def start_trace(self): |
| 233 | if self.monitoring_tracer: |
| 234 | self.monitoring_tracer.start_trace(self.trace_dispatch) |
| 235 | else: |
| 236 | sys.settrace(self.trace_dispatch) |
| 237 | |
| 238 | def stop_trace(self): |
| 239 | if self.monitoring_tracer: |