##// END OF EJS Templates
Use new events system for post_execute callback
Thomas Kluyver -
Show More
@@ -533,4 +533,4 b' def load_ipython_extension(ip):'
533 auto_reload = AutoreloadMagics(ip)
533 auto_reload = AutoreloadMagics(ip)
534 ip.register_magics(auto_reload)
534 ip.register_magics(auto_reload)
535 ip.events.register('pre_run_cell', auto_reload.pre_run_cell)
535 ip.events.register('pre_run_cell', auto_reload.pre_run_cell)
536 ip.register_post_execute(auto_reload.post_execute_hook)
536 ip.events.register('post_execute', auto_reload.post_execute_hook)
General Comments 0
You need to be logged in to leave comments. Login now