This method is called when there is the remote possibility that we ever need to stop in this function.
(self, frame, argument_list)
| 555 | # Override Bdb methods |
| 556 | |
| 557 | def user_call(self, frame, argument_list): |
| 558 | """This method is called when there is the remote possibility |
| 559 | that we ever need to stop in this function.""" |
| 560 | if self._wait_for_mainpyfile: |
| 561 | return |
| 562 | if self.stop_here(frame): |
| 563 | self.message('--Call--') |
| 564 | self.interaction(frame, None) |
| 565 | |
| 566 | def user_line(self, frame): |
| 567 | """This function is called when we stop or break at this line.""" |
nothing calls this directly
no test coverage detected