This function is called when we stop or break at this line.
(self, frame)
| 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.""" |
| 319 | if self._wait_for_mainpyfile: |
| 320 | if (self.mainpyfile != self.canonic(frame.f_code.co_filename) |
| 321 | or frame.f_lineno <= 0): |
| 322 | return |
| 323 | self._wait_for_mainpyfile = False |
| 324 | if self.bp_commands(frame): |
| 325 | self.interaction(frame, None) |
| 326 | |
| 327 | def bp_commands(self, frame): |
| 328 | """Call every command that was set for the current active breakpoint |
nothing calls this directly
no test coverage detected