On Dienstag, 15. April 2008, G Jones wrote: > Hello, > I have some code like: > self.plot.draw() > self.gui_repaint() > etc. > When I single step through this code, it does not descend into these > methods to show me what is happening inside, it only steps to the next > statement. Is there any way to descend into methods while stepping? > Thanks, > Glenn
There are single step (= step into) and step over actions available. Single step will step into a method, if it is a Python method/function i.e. not implemented by an extension module. Regards, Detlev -- Detlev Offenbach [EMAIL PROTECTED] _______________________________________________ Eric mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/eric
