(self)
| 91 | |
| 92 | @property |
| 93 | def ipy_completer(self): |
| 94 | if self._ipy_completer: |
| 95 | return self._ipy_completer |
| 96 | else: |
| 97 | return self.shell.Completer |
| 98 | |
| 99 | def get_completions(self, document, complete_event): |
| 100 | if not document.current_line.strip(): |
nothing calls this directly
no outgoing calls
no test coverage detected