(self, ipy_completer=None, shell=None)
| 84 | class IPythonPTCompleter(Completer): |
| 85 | """Adaptor to provide IPython completions to prompt_toolkit""" |
| 86 | def __init__(self, ipy_completer=None, shell=None): |
| 87 | if shell is None and ipy_completer is None: |
| 88 | raise TypeError("Please pass shell=an InteractiveShell instance.") |
| 89 | self._ipy_completer = ipy_completer |
| 90 | self.shell = shell |
| 91 | |
| 92 | @property |
| 93 | def ipy_completer(self): |
nothing calls this directly
no outgoing calls
no test coverage detected