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

Method _notify_rip

pydevd_attach_to_process/winappdbg/debug.py:1437–1450  ·  view source on GitHub ↗

Notify of a RIP event. @warning: This method is meant to be used internally by the debugger. @type event: L{RIPEvent} @param event: RIP event. @rtype: bool @return: C{True} to call the user-defined handle, C{False} otherwise.

(self, event)

Source from the content-addressed store, hash-verified

1435 return bCallHandler1 and bCallHandler2
1436
1437 def _notify_rip(self, event):
1438 """
1439 Notify of a RIP event.
1440
1441 @warning: This method is meant to be used internally by the debugger.
1442
1443 @type event: L{RIPEvent}
1444 @param event: RIP event.
1445
1446 @rtype: bool
1447 @return: C{True} to call the user-defined handle, C{False} otherwise.
1448 """
1449 event.debug.detach(event.get_pid())
1450 return True
1451
1452 def _notify_debug_control_c(self, event):
1453 """

Callers

nothing calls this directly

Calls 2

detachMethod · 0.80
get_pidMethod · 0.45

Tested by

no test coverage detected