cmd is NetCommand
(self, cmd)
| 375 | self.timeout = 0.1 |
| 376 | |
| 377 | def add_command(self, cmd): |
| 378 | """cmd is NetCommand""" |
| 379 | if not self._kill_received: # we don't take new data after everybody die |
| 380 | self._cmd_queue.put(cmd, False) |
| 381 | |
| 382 | @overrides(PyDBDaemonThread._on_run) |
| 383 | def _on_run(self): |
no test coverage detected