Ejemplo n.º 1
0
 def invoke_ipython_shell(self):
     try:
         from IPython.terminal import embed
         embed.TerminalInteractiveShell(user_ns=self.locals).mainloop()
     except ImportError:  # ipython < 0.11
         from IPython.Shell import IPShell
         IPShell(argv=[], user_ns=self.locals).mainloop()
Ejemplo n.º 2
0
 def _ipython_terminal(self):  # pragma: no cover
     from IPython.terminal import embed
     embed.TerminalInteractiveShell(user_ns=self.locals).mainloop()