MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / __callHandler

Method __callHandler

pydevd_attach_to_process/winappdbg/breakpoint.py:1294–1309  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 """

Callers 2

__call__Method · 0.95
__postCallActionMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected