Module:terminal.debugger

1 Class

classIPython.terminal.debugger.TerminalPdb(*args,pt_session_options=None,**kwargs)

Bases:Pdb

Standalone IPython debugger.

__init__(*args,pt_session_options=None,**kwargs)

Create a new IPython debugger.

Parameters:
  • completekey (default None) – Passed to pdb.Pdb.

  • stdin (default None) – Passed to pdb.Pdb.

  • stdout (default None) – Passed to pdb.Pdb.

  • context (int) – Number of lines of source code context to show whendisplaying stacktrace information.

  • **kwargs – Passed to pdb.Pdb.

Notes

The possibilities are python version dependent, see the pythondocs for more info.

cmdloop(intro=None)

Repeatedly issue a prompt, accept input, parse an initial prefixoff the received input, and dispatch to action methods, passing themthe remainder of the line as argument.

override the same methods from cmd.Cmd to provide prompt toolkit replacement.

do_interact(arg)

interact

Start an interactive interpreter whose global namespacecontains all the (global and local) names found in the current scope.

pt_init(pt_session_options=None)

Initialize the prompt session and the prompt loopand store them in self.pt_app and self.pt_loop.

Additional keyword arguments for the PromptSession classcan be specified in pt_session_options.

1 Function

IPython.terminal.debugger.set_trace(frame=None)

Start debugging fromframe.

If frame is not specified, debugging starts from caller’s frame.