(self)
| 2438 | del frame |
| 2439 | |
| 2440 | def _create_pydb_command_thread(self): |
| 2441 | curr_pydb_command_thread = self.py_db_command_thread |
| 2442 | if curr_pydb_command_thread is not None: |
| 2443 | curr_pydb_command_thread.do_kill_pydev_thread() |
| 2444 | |
| 2445 | new_pydb_command_thread = self.py_db_command_thread = PyDBCommandThread(self) |
| 2446 | new_pydb_command_thread.start() |
| 2447 | |
| 2448 | def _create_check_output_thread(self): |
| 2449 | curr_output_checker_thread = self.check_alive_thread |
no test coverage detected