(self, addr, initial_breakpoint)
| 211 | |
| 212 | class FunctionRetBP(Breakpoint): |
| 213 | def __init__(self, addr, initial_breakpoint): |
| 214 | super(FunctionRetBP, self).__init__(addr) |
| 215 | self.initial_breakpoint = initial_breakpoint |
| 216 | |
| 217 | def trigger(self, dbg, exc): |
| 218 | dbg.del_bp(self, targets=[dbg.current_process]) |