MCPcopy Index your code
hub / github.com/ipython/ipython / load_ipython_extension

Function load_ipython_extension

IPython/extensions/autoreload.py:910–915  ·  view source on GitHub ↗

Load the extension in IPython.

(ip)

Source from the content-addressed store, hash-verified

908
909
910def load_ipython_extension(ip):
911 """Load the extension in IPython."""
912 auto_reload = AutoreloadMagics(ip)
913 ip.register_magics(auto_reload)
914 ip.events.register("pre_run_cell", auto_reload.pre_run_cell)
915 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

Used in the wild real call sites across dependent graphs

searching dependent graphs…