(self)
| 74 | self.debugFrame.Show() |
| 75 | |
| 76 | def POLDie(self): |
| 77 | for pid in self.registeredPid: |
| 78 | try: |
| 79 | os.kill(-pid, signal.SIGKILL) |
| 80 | except OSError: |
| 81 | pass |
| 82 | try: |
| 83 | os.kill(pid, signal.SIGKILL) |
| 84 | except OSError: |
| 85 | pass |
| 86 | app.POLServer.closeServer() |
| 87 | os._exit(0) |
| 88 | |
| 89 | def POLRestart(self): |
| 90 | return False |
no test coverage detected