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

Method __init__

IPython/core/extensions.py:51–56  ·  view source on GitHub ↗
(self, shell=None, **kwargs)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected