(self, mod)
| 135 | return True |
| 136 | |
| 137 | def _call_unload_ipython_extension(self, mod): |
| 138 | if hasattr(mod, 'unload_ipython_extension'): |
| 139 | mod.unload_ipython_extension(self.shell) |
| 140 | return True |
| 141 | |
| 142 | @undoc |
| 143 | def install_extension(self, url, filename=None): |