Module bdb :: Class Tdb
[hide private]
[frames] | no frames]

_ClassType Tdb

Bdb --+
      |
     Tdb

Instance Methods [hide private]
 
user_call(self, frame, args)
This method is called when there is the remote possibility that we ever need to stop in this function.
 
user_line(self, frame)
This method is called when we stop or break at this line.
 
user_return(self, frame, retval)
This method is called when a return trap is set here.
 
user_exception(self, frame, exc_stuff)
This method is called if an exception occurs, but only if we are to stop at or just below this level.

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

Method Details [hide private]

user_call(self, frame, args)

 

This method is called when there is the remote possibility that we ever need to stop in this function.

Overrides: Bdb.user_call
(inherited documentation)

user_line(self, frame)

 

This method is called when we stop or break at this line.

Overrides: Bdb.user_line
(inherited documentation)

user_return(self, frame, retval)

 

This method is called when a return trap is set here.

Overrides: Bdb.user_return
(inherited documentation)

user_exception(self, frame, exc_stuff)

 

This method is called if an exception occurs, but only if we are to stop at or just below this level.

Overrides: Bdb.user_exception
(inherited documentation)