(self, py_db)
| 301 | # ======================================================================================================================= |
| 302 | class CheckAliveThread(PyDBDaemonThread): |
| 303 | def __init__(self, py_db): |
| 304 | PyDBDaemonThread.__init__(self, py_db) |
| 305 | self.name = "pydevd.CheckAliveThread" |
| 306 | self.daemon = False |
| 307 | self._wait_event = ThreadingEvent() |
| 308 | |
| 309 | @overrides(PyDBDaemonThread._on_run) |
| 310 | def _on_run(self): |