Debug Python using PDB on Windows
Anyone know how to debug Python using PDB in Windows XP?
My system has some deadlock. I want to use 开发者_C百科PDB to track my system.
My Config: VC 2005, Python2.7
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!
I think the following page will help you. It's pydev with Eclipse.
http://pydev.org/manual_adv_remote_debugger.html
精彩评论