##// END OF EJS Templates
fix doc on extension loading
Matthias Bussonnier -
Show More
@@ -56,9 +56,11 b' imported, and the currently active :class:`~IPython.core.interactiveshell.Intera'
56 instance is passed as the only argument. You can do anything you want with
56 instance is passed as the only argument. You can do anything you want with
57 IPython at that point.
57 IPython at that point.
58
58
59 :func:`load_ipython_extension` will be called again if you load or reload
59 :func:`load_ipython_extension` will not be called again if the user use
60 the extension again. It is up to the extension author to add code to manage
60 `%load_extension`. The user have to explicitly ask the extension to be
61 that.
61 reloaded (with `%reload_extension`). In case where the use ask the extension to
62 be reloaded, , the extension will be unloaded (with
63 `unload_ipython_extension`), and loaded again.
62
64
63 Useful :class:`InteractiveShell` methods include :meth:`~IPython.core.interactiveshell.InteractiveShell.register_magic_function`,
65 Useful :class:`InteractiveShell` methods include :meth:`~IPython.core.interactiveshell.InteractiveShell.register_magic_function`,
64 :meth:`~IPython.core.interactiveshell.InteractiveShell.push` (to add variables to the user namespace) and
66 :meth:`~IPython.core.interactiveshell.InteractiveShell.push` (to add variables to the user namespace) and
General Comments 0
You need to be logged in to leave comments. Login now