Invoke user function and return trace function for line event. If the debugger stops on the current line, invoke self.user_line(). Raise BdbQuit if self.quitting is set. Return self.trace_dispatch to continue tracing in this scope.
(self, frame)
| 104 | return self.trace_dispatch |
| 105 | |
| 106 | def dispatch_line(self, frame): |
| 107 | """Invoke user function and return trace function for line event. |
| 108 | |
| 109 | If the debugger stops on the current line, invoke |
| 110 | self.user_line(). Raise BdbQuit if self.quitting is set. |
| 111 | Return self.trace_dispatch to continue tracing in this scope. |
| 112 | """ |
| 113 | if self.stop_here(frame) or self.break_here(frame): |
| 114 | self.user_line(frame) |
| 115 | if self.quitting: raise BdbQuit |
| 116 | return self.trace_dispatch |
| 117 | |
| 118 | def dispatch_call(self, frame, arg): |
| 119 | """Invoke user function and return trace function for call event. |
no test coverage detected