(self)
| 43 | return [(None, None, None, "Auto-completion refresh started in the background.")] |
| 44 | |
| 45 | def is_refreshing(self): |
| 46 | return self._completer_thread and self._completer_thread.is_alive() |
| 47 | |
| 48 | def _bg_refresh(self, pgexecute, special, callbacks, history=None, settings=None): |
| 49 | settings = settings or {} |
no outgoing calls
no test coverage detected