MCPcopy Index your code
hub / github.com/ipython/ipython / reload_ext

Method reload_ext

IPython/core/magics/extension.py:59–63  ·  view source on GitHub ↗

Reload an IPython extension by its module name.

(self, module_str)

Source from the content-addressed store, hash-verified

57
58 @line_magic
59 def reload_ext(self, module_str):
60 """Reload an IPython extension by its module name."""
61 if not module_str:
62 raise UsageError('Missing module name.')
63 self.shell.extension_manager.reload_extension(module_str)

Callers

nothing calls this directly

Calls 2

UsageErrorClass · 0.90
reload_extensionMethod · 0.80

Tested by

no test coverage detected