(self, shell=None, **kwargs)
| 49 | shell = Instance('IPython.core.interactiveshell.InteractiveShellABC', allow_none=True) |
| 50 | |
| 51 | def __init__(self, shell=None, **kwargs): |
| 52 | super(ExtensionManager, self).__init__(shell=shell, **kwargs) |
| 53 | self.shell.observe( |
| 54 | self._on_ipython_dir_changed, names=('ipython_dir',) |
| 55 | ) |
| 56 | self.loaded = set() |
| 57 | |
| 58 | @property |
| 59 | def ipython_extension_dir(self): |
nothing calls this directly
no outgoing calls
no test coverage detected