Reload an IPython extension by its module name.
(self, module_str)
| 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) |
nothing calls this directly
no test coverage detected