(self, py_db)
| 257 | # ======================================================================================================================= |
| 258 | class PyDBCommandThread(PyDBDaemonThread): |
| 259 | def __init__(self, py_db): |
| 260 | PyDBDaemonThread.__init__(self, py_db) |
| 261 | self._py_db_command_thread_event = py_db._py_db_command_thread_event |
| 262 | self.name = "pydevd.CommandThread" |
| 263 | |
| 264 | @overrides(PyDBDaemonThread._on_run) |
| 265 | def _on_run(self): |