(self)
| 1582 | pydev_log.debug("Exiting _WaitForConnectionThread: %s\n", port) |
| 1583 | |
| 1584 | def do_kill_pydev_thread(self): |
| 1585 | PyDBDaemonThread.do_kill_pydev_thread(self) |
| 1586 | s = self._server_socket |
| 1587 | if s is not None: |
| 1588 | try: |
| 1589 | s.close() |
| 1590 | except: |
| 1591 | pass |
| 1592 | self._server_socket = None |
| 1593 | |
| 1594 | def get_internal_queue_and_event(self, thread_id) -> Tuple[_queue.Queue, ThreadingEvent]: |
| 1595 | """returns internal command queue for a given thread. |
nothing calls this directly
no test coverage detected