(locals)
| 29 | |
| 30 | |
| 31 | def _invoke_ipython_shell(locals): |
| 32 | for ip in (_ipython, _ipython_pre_10, |
| 33 | _ipython_terminal, _ipython_010, |
| 34 | _no_ipython): |
| 35 | try: |
| 36 | return ip(locals) |
| 37 | except ImportError: |
| 38 | pass |
| 39 | |
| 40 | |
| 41 | def _ipython(locals): |
no outgoing calls
no test coverage detected
searching dependent graphs…