Closed Carreau closed 9 years ago
def load_ipython_extension(ip): global _loaded if not _loaded: ip.register_magics(PydMagics) _loaded = True
Any recent enough IPython take care of that for you. Define a unload_ipython_extension if you want a specific step to be take care of during reload.
unload_ipython_extension
Thanks for the advice
https://github.com/DlangScience/PydMagic/pull/5
Fixed by https://github.com/DlangScience/PydMagic/pull/7
Any recent enough IPython take care of that for you. Define a
unload_ipython_extension
if you want a specific step to be take care of during reload.