(self, timeout=None)
| 334 | pydev_log.exception() |
| 335 | |
| 336 | def join(self, timeout=None): |
| 337 | # If someone tries to join this thread, mark it to be killed. |
| 338 | # This is the case for CherryPy when auto-reload is turned on. |
| 339 | self.do_kill_pydev_thread() |
| 340 | PyDBDaemonThread.join(self, timeout=timeout) |
| 341 | |
| 342 | @overrides(PyDBDaemonThread.do_kill_pydev_thread) |
| 343 | def do_kill_pydev_thread(self): |