(shell)
| 16 | shell.prompts = new_prompts |
| 17 | |
| 18 | def unload_ipython_extension(shell): |
| 19 | if not hasattr(shell.prompts, 'old_prompts'): |
| 20 | print("cannot unload") |
| 21 | else: |
| 22 | shell.prompts = shell.prompts.old_prompts |
| 23 | |
| 24 | |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected