Package nltk :: Package test :: Module doctest_driver :: Class _OutputRedirectingPdb
[hide private]
[frames] | no frames]

classobj_type _OutputRedirectingPdb

source code

bdb.Bdb --+    
          |    
cmd.Cmd --+    
          |    
    pdb.Pdb --+
              |
             _OutputRedirectingPdb

Instance Methods [hide private]
 
__init__(self, out)
Instantiate a line-oriented interpreter framework.
source code
 
set_trace(self)
Start debugging from `frame`.
source code
 
set_continue(self) source code
 
trace_dispatch(self, *args) source code

Inherited from pdb.Pdb: bp_commands, checkline, default, defaultFile, do_EOF, do_a, do_alias, do_args, do_b, do_break, do_bt, do_c, do_cl, do_clear, do_commands, do_condition, do_cont, do_continue, do_d, do_debug, do_disable, do_down, do_enable, do_exit, do_h, do_ignore, do_j, do_jump, do_l, do_list, do_n, do_next, do_p, do_pp, do_q, do_quit, do_r, do_return, do_retval, do_rv, do_s, do_step, do_tbreak, do_u, do_unalias, do_up, do_w, do_whatis, do_where, execRcLines, forget, handle_command_def, help_EOF, help_a, help_alias, help_args, help_b, help_break, help_bt, help_c, help_cl, help_clear, help_commands, help_condition, help_cont, help_continue, help_d, help_debug, help_disable, help_down, help_enable, help_exec, help_exit, help_h, help_help, help_ignore, help_j, help_jump, help_l, help_list, help_n, help_next, help_p, help_pdb, help_pp, help_q, help_quit, help_r, help_return, help_s, help_step, help_tbreak, help_u, help_unalias, help_up, help_w, help_whatis, help_where, interaction, lineinfo, lookupmodule, onecmd, precmd, print_stack_entry, print_stack_trace, reset, setup, user_call, user_exception, user_line, user_return

Inherited from pdb.Pdb (private): _getval, _runscript

Inherited from bdb.Bdb: break_anywhere, break_here, canonic, clear_all_breaks, clear_all_file_breaks, clear_bpbynumber, clear_break, dispatch_call, dispatch_exception, dispatch_line, dispatch_return, format_stack_entry, get_all_breaks, get_break, get_breaks, get_file_breaks, get_stack, run, runcall, runctx, runeval, set_break, set_next, set_quit, set_return, set_step, stop_here

Inherited from cmd.Cmd: cmdloop, columnize, complete, complete_help, completedefault, completenames, do_help, emptyline, get_names, parseline, postcmd, postloop, preloop, print_topics

Class Variables [hide private]

Inherited from pdb.Pdb: commands_resuming

Inherited from cmd.Cmd: doc_header, doc_leader, identchars, intro, lastcmd, misc_header, nohelp, prompt, ruler, undoc_header, use_rawinput

Method Details [hide private]

__init__(self, out)
(Constructor)

source code 

Instantiate a line-oriented interpreter framework.

The optional argument 'completekey' is the readline name of a completion key; it defaults to the Tab key. If completekey is not None and the readline module is available, command completion is done automatically. The optional arguments stdin and stdout specify alternate input and output file objects; if not specified, sys.stdin and sys.stdout are used.

Overrides: cmd.Cmd.__init__
(inherited documentation)

set_trace(self)

source code 

Start debugging from `frame`.

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

Overrides: bdb.Bdb.set_trace
(inherited documentation)

set_continue(self)

source code 
Overrides: bdb.Bdb.set_continue

trace_dispatch(self, *args)

source code 
Overrides: bdb.Bdb.trace_dispatch