Re: [Tutor] Checking/Debugging tools

2007-05-12 Thread Kent Johnson
Alan Gilfoy wrote: > Quoting Kent Johnson <[EMAIL PROTECTED]>: >> - A debugger lets you step through the code and see how it behaves. >> winpdb is a pretty nice GUI-based Python debugger and some Python >> development tools have built-in debuggers. >> http://www.digitalpeers.com/pythondebugger/ >

[Tutor] Checking/Debugging tools

2007-05-12 Thread Alan Gilfoy
Quoting Kent Johnson <[EMAIL PROTECTED]>: > Alan Gilfoy wrote: >> My programs often have long, detailed loops in them, and would like >>to, as I'm executing the loop, view what part of the loop Python >> is currently processing. >> >> Thus, if my program gets stuck in one part of the lo