Calls a "pre" or "post" handler, if set. @type callback: function @param callback: Callback function to call. @type event: L{ExceptionEvent} @param event: Breakpoint hit event. @type params: tuple @param params: Parameters for the callba
(self, callback, event, *params)
| 1292 | self.__callHandler(self.__postCB, event, retval) |
| 1293 | |
| 1294 | def __callHandler(self, callback, event, *params): |
| 1295 | """ |
| 1296 | Calls a "pre" or "post" handler, if set. |
| 1297 | |
| 1298 | @type callback: function |
| 1299 | @param callback: Callback function to call. |
| 1300 | |
| 1301 | @type event: L{ExceptionEvent} |
| 1302 | @param event: Breakpoint hit event. |
| 1303 | |
| 1304 | @type params: tuple |
| 1305 | @param params: Parameters for the callback function. |
| 1306 | """ |
| 1307 | if callback is not None: |
| 1308 | event.hook = self |
| 1309 | callback(event, *params) |
| 1310 | |
| 1311 | def __push_params(self, tid, params): |
| 1312 | """ |
no outgoing calls
no test coverage detected