Inherits from
- Bdb: enthought.developer.helper.bdb.Bdb
Method summary
- __init__(self)
- begin_trace(self)
- set_trace(self)
- user_call(self, frame, argument_list)
- user_exception(self, frame, (exc_type, exc_value, exc_traceback))
- user_line(self, frame)
- user_return(self, frame, return_value)
Methods
- __init__(self)
- begin_trace(self)
Start debugging from here.
- set_trace(self)
Start debugging from here.
- user_call(self, frame, argument_list)
This method is called when there is the remote possibility that we ever need to stop in this function.
- user_exception(self, frame, (exc_type, exc_value, exc_traceback))
This method is called if an exception occurs, but only if we are to stop at or just below this level.
- user_line(self, frame)
This method is called when we stop or break at this line.
- user_return(self, frame, return_value)
This method is called when a return trap is set here.