(self, py_db, frame, event, info)
| 171 | return False |
| 172 | |
| 173 | def get_breakpoint(self, py_db, frame, event, info): |
| 174 | for plugin in self.active_plugins: |
| 175 | ret = plugin.get_breakpoint(py_db, frame, event, info) |
| 176 | if ret: |
| 177 | return ret |
| 178 | return None |
| 179 | |
| 180 | def suspend(self, py_db, thread, frame, bp_type): |
| 181 | """ |
no outgoing calls
no test coverage detected