This method is called when there is the remote possibility that we ever need to stop in this function.
(self, frame, argument_list)
| 251 | # Override Bdb methods |
| 252 | |
| 253 | def user_call(self, frame, argument_list): |
| 254 | """This method is called when there is the remote possibility |
| 255 | that we ever need to stop in this function.""" |
| 256 | if self._wait_for_mainpyfile: |
| 257 | return |
| 258 | if self.stop_here(frame): |
| 259 | self.message('--Call--') |
| 260 | self.interaction(frame, None) |
| 261 | |
| 262 | def user_line(self, frame): |
| 263 | """This function is called when we stop or break at this line.""" |
nothing calls this directly
no test coverage detected