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

Method kill_all

pydevd_attach_to_process/winappdbg/debug.py:708–721  ·  view source on GitHub ↗

Kills from all processes currently being debugged. @type bIgnoreExceptions: bool @param bIgnoreExceptions: C{True} to ignore any exceptions that may be raised when killing each process. C{False} to stop and raise an exception when encountering an er

(self, bIgnoreExceptions=False)

Source from the content-addressed store, hash-verified

706 warnings.warn(str(e), RuntimeWarning)
707
708 def kill_all(self, bIgnoreExceptions=False):
709 """
710 Kills from all processes currently being debugged.
711
712 @type bIgnoreExceptions: bool
713 @param bIgnoreExceptions: C{True} to ignore any exceptions that may be
714 raised when killing each process. C{False} to stop and raise an
715 exception when encountering an error.
716
717 @raise WindowsError: Raises an exception on error, unless
718 C{bIgnoreExceptions} is C{True}.
719 """
720 for pid in self.get_debugee_pids():
721 self.kill(pid, bIgnoreExceptions=bIgnoreExceptions)
722
723 def detach(self, dwProcessId, bIgnoreExceptions=False):
724 """

Callers 2

stopMethod · 0.95
destroy_debuggerMethod · 0.80

Calls 2

get_debugee_pidsMethod · 0.95
killMethod · 0.95

Tested by

no test coverage detected