Load the extension in IPython.
(ip)
| 543 | |
| 544 | |
| 545 | def 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) |
nothing calls this directly
no test coverage detected