(self, mod)
| 125 | self.load_extension(module_str) |
| 126 | |
| 127 | def _call_load_ipython_extension(self, mod): |
| 128 | if hasattr(mod, 'load_ipython_extension'): |
| 129 | mod.load_ipython_extension(self.shell) |
| 130 | return True |
| 131 | |
| 132 | def _call_unload_ipython_extension(self, mod): |
| 133 | if hasattr(mod, 'unload_ipython_extension'): |
no outgoing calls
no test coverage detected