PDA

View Full Version : Debugging in python.



kragen
May 15th, 2007, 04:03 PM
I can't find a decent debugger for python - I've tried all the graphical debuggers I could find:

winpdb
ddd
xxgdb

But I've had various problems with just about all of them.

Are there any others out there that I've missed, or am I going to have to stick with a command line debugger like pydb?

gotgenes
June 2nd, 2007, 05:35 PM
I wrote a tuturial on using Winpdb (http://gotgenes.com/swcatvtwiki/DebuggingExercise) that may interest you.

ghostdog74
June 3rd, 2007, 03:46 AM
Are there any others out there that I've missed
the pdb module is good enough. just import it, set a trace in your script, and then you can debug.

56phil
June 3rd, 2007, 06:38 AM
Eric has a really nice debugger.