File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
docs/source/config/extensions Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -56,9 +56,11 @@ imported, and the currently active :class:`~IPython.core.interactiveshell.Intera
56
56
instance is passed as the only argument. You can do anything you want with
57
57
IPython at that point.
58
58
59
- :func: `load_ipython_extension ` will be called again if you load or reload
60
- the extension again. It is up to the extension author to add code to manage
61
- that.
59
+ :func: `load_ipython_extension ` will not be called again if the user use
60
+ `%load_extension `. The user have to explicitly ask the extension to be
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
65
Useful :class: `InteractiveShell ` methods include :meth: `~IPython.core.interactiveshell.InteractiveShell.register_magic_function `,
64
66
:meth: `~IPython.core.interactiveshell.InteractiveShell.push ` (to add variables to the user namespace) and
You can’t perform that action at this time.
0 commit comments