(self, shell=None, **kwargs)
| 196 | shell = Instance('IPython.core.interactiveshell.InteractiveShellABC', allow_none=True) |
| 197 | |
| 198 | def __init__(self, shell=None, **kwargs): |
| 199 | super(AliasManager, self).__init__(shell=shell, **kwargs) |
| 200 | # For convenient access |
| 201 | self.linemagics = self.shell.magics_manager.magics['line'] |
| 202 | self.init_aliases() |
| 203 | |
| 204 | def init_aliases(self): |
| 205 | # Load default & user aliases |
nothing calls this directly
no test coverage detected