views:

44

answers:

1

Hi guys, Anyone know how to debug Python using PDB in Windows XP?

My system has some deadlock. I want to use PDB to track my system.

My Config: VC 2005, Python2.7

A: 

I would recommend using the Winpdb GUI debugger, which works great on Windows (and other OSes too--the name is misleading) and can attach to processes after launch. There's a great tutorial that gets you all the basics, which has been enough for me every time I've needed it, at least. Good luck!

ewall