Python Debugger / IDE ??

bruno at modulix onurb at xiludom.gro
Tue Mar 14 15:10:33 EST 2006


krypto.wizard at gmail.com wrote:
> Is there any editor or IDE in Python (either Windows or Linux) which
> has very good debugging facilites like MS VisualStudio has or something
> like that.
> 
> I like SPE but couldn't easily use winPDP. I need tips to debug my code
> easily.

pythonic "debugging" in three steps:

1/ unit tests
2/ a bunch of print statements
3/ the interactive python shell

All this relying on well-decoupled, modular code.

FWIW, I've almost never used a debugger with Python.

HTH
-- 
bruno desthuilliers
python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
p in 'onurb at xiludom.gro'.split('@')])"



More information about the Python-list mailing list