Re: [Tutor] Debugger Needed

2006-02-06 Thread Alan Gauld
> A new "beautiful" Debugger is winpdb. > Also on Sourceforge. It looked nice and I tried it a few months back but it hung up on me a few times so I left it to "mature" for later.. :-) Alan G. ___ Tutor maillist - Tutor@python.org http://mail.python.

Re: [Tutor] Debugger Needed

2006-02-06 Thread Franz Steinhaeusler
On Mon, 6 Feb 2006 08:59:37 -, "Alan Gauld" <[EMAIL PROTECTED]> wrote: >> I am new to python, I want to know how to use a debugger and which >> debugger give a GUI . > >If you are new to Python but experienced in programming then you should find >the pdb debugger is a lot like the GNU gdb one

Re: [Tutor] Debugger Needed

2006-02-06 Thread Alan Gauld
> I am new to python, I want to know how to use a debugger and which > debugger give a GUI . If you are new to Python but experienced in programming then you should find the pdb debugger is a lot like the GNU gdb one. Its not a GUI hiowever. (Although I beliebe you can get it to work with ddx etc

Re: [Tutor] Debugger Needed

2006-02-05 Thread Danny Yoo
On Sun, 5 Feb 2006, Akanksha Govil wrote: > I am new to python, I want to know how to use a debugger and which > debugger give a GUI . Hi Akanksha, Have you looked at 'pdb' yet? http://www.python.org/doc/lib/module-pdb.html Several of the major Python IDEs also provide some kind of debu