MCPcopy Create free account
hub / github.com/ipython/ipython / __init__

Method __init__

IPython/core/alias.py:198–202  ·  view source on GitHub ↗
(self, shell=None, **kwargs)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

init_aliasesMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected