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

Function shell_initialized

IPython/core/events.py:149–160  ·  view source on GitHub ↗

Fires after initialisation of :class:`~IPython.core.interactiveshell.InteractiveShell`. This is before extensions and startup scripts are loaded, so it can only be set by subclassing. Parameters ---------- ip : :class:`~IPython.core.interactiveshell.InteractiveShell`

(ip)

Source from the content-addressed store, hash-verified

147
148@_define_event
149def shell_initialized(ip):
150 """Fires after initialisation of :class:`~IPython.core.interactiveshell.InteractiveShell`.
151
152 This is before extensions and startup scripts are loaded, so it can only be
153 set by subclassing.
154
155 Parameters
156 ----------
157 ip : :class:`~IPython.core.interactiveshell.InteractiveShell`
158 The newly initialised shell.
159 """
160 pass

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected