(self, frame, argument_list)
| 198 | return super().trace_dispatch(frame, event, arg) |
| 199 | |
| 200 | def user_call(self, frame, argument_list): |
| 201 | # Adopt the same behavior as pdb and, as a side effect, skip also the |
| 202 | # first 'call' event when the Tracer is started with Tracer.runcall() |
| 203 | # which may be possibly considered as a bug. |
| 204 | if not self.stop_here(frame): |
| 205 | return |
| 206 | self.process_event('call', frame, argument_list) |
| 207 | self.next_set_method() |
| 208 | |
| 209 | def user_line(self, frame): |
| 210 | self.process_event('line', frame) |
nothing calls this directly
no test coverage detected