(self, addr, format, func=None)
| 246 | |
| 247 | class PrintBP(Breakpoint): |
| 248 | def __init__(self, addr, format, func=None): |
| 249 | super(PrintBP, self).__init__(addr) |
| 250 | self.format = format |
| 251 | self.func = func |
| 252 | |
| 253 | def trigger(self, dbg, exc): |
| 254 | thread = dbg.current_thread |