This method is called when there is the remote possibility that we ever need to stop in this function.
(self, frame, argument_list)
| 306 | # Override Bdb methods |
| 307 | |
| 308 | def user_call(self, frame, argument_list): |
| 309 | """This method is called when there is the remote possibility |
| 310 | that we ever need to stop in this function.""" |
| 311 | if self._wait_for_mainpyfile: |
| 312 | return |
| 313 | if self.stop_here(frame): |
| 314 | self.message('--Call--') |
| 315 | self.interaction(frame, None) |
| 316 | |
| 317 | def user_line(self, frame): |
| 318 | """This function is called when we stop or break at this line.""" |
nothing calls this directly
no test coverage detected