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

Function load_ipython_extension

IPython/extensions/autoreload.py:545–550  ·  view source on GitHub ↗

Load the extension in IPython.

(ip)

Source from the content-addressed store, hash-verified

543
544
545def load_ipython_extension(ip):
546 """Load the extension in IPython."""
547 auto_reload = AutoreloadMagics(ip)
548 ip.register_magics(auto_reload)
549 ip.events.register('pre_run_cell', auto_reload.pre_run_cell)
550 ip.events.register('post_execute', auto_reload.post_execute_hook)

Callers

nothing calls this directly

Calls 2

AutoreloadMagicsClass · 0.85
registerMethod · 0.45

Tested by

no test coverage detected