[Tutor] Clarification on Debugging under IDLE
Alan Gauld
alan.gauld at btinternet.com
Tue Apr 24 20:09:15 CEST 2007
"J.T. Hurley" <jeffreythurley at gmail.com> wrote
> On the debug control, what is the difference between "go," over,"
> and "out?"
Cabeat, I haven't checked, but from memory:
go = Run the program from the current point onwards
until you hit the next break point or until it ends.
over = step over the function on the current line
(ie don't step into it)
out = run the rest of the function and stop when
you exit it back to the level above. Often used to fix
an accidental step-into
Alan G.
More information about the Tutor
mailing list