Load the extension in IPython.
(ip)
| 908 | |
| 909 | |
| 910 | def 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) |
nothing calls this directly
no test coverage detected
searching dependent graphs…