(self, mod)
| 130 | self.load_extension(module_str) |
| 131 | |
| 132 | def _call_load_ipython_extension(self, mod): |
| 133 | if hasattr(mod, 'load_ipython_extension'): |
| 134 | mod.load_ipython_extension(self.shell) |
| 135 | return True |
| 136 | |
| 137 | def _call_unload_ipython_extension(self, mod): |
| 138 | if hasattr(mod, 'unload_ipython_extension'): |
no outgoing calls
no test coverage detected