(self)
| 440 | |
| 441 | @overrides(PyDBDaemonThread.do_kill_pydev_thread) |
| 442 | def do_kill_pydev_thread(self): |
| 443 | if not self._kill_received: |
| 444 | # Add command before setting the kill flag (otherwise the command may not be added). |
| 445 | exit_cmd = self.py_db.cmd_factory.make_exit_command(self.py_db) |
| 446 | self.add_command(exit_cmd) |
| 447 | |
| 448 | PyDBDaemonThread.do_kill_pydev_thread(self) |
| 449 | |
| 450 | |
| 451 | def create_server_socket(host, port): |
nothing calls this directly
no test coverage detected