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)
| 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 | """ |
no test coverage detected