pdb and winpdb both seem to be missing this essential (to me) feature. I saw something suggesting WingIDE has it but I'd prefer a solution that is free, and if I do have to pay, I'd prefer to pay for something that is better than Wing.

link|improve this question

61% accept rate
feedback

5 Answers

up vote 1 down vote accepted

Please look what pydev in eclipse offers...

link|improve this answer
Care to add some links to examples? – Glyph Oct 16 '08 at 12:06
1  
It looks like watchpoints are not yet implemented in pydev. mail-archive.com/pydev-users@lists.sourceforge.net/… – Paul D. Eden Oct 16 '08 at 16:54
1  
Actually, that link is to an old reference... Watch expressions should be working on PyDev now (just select the code you want, right click > watch -- or maybe use the console during a debug session for prints: pydev.org/manual_adv_debug_console.html ) – Fabio Zadrozny Oct 18 '11 at 9:50
feedback

You should check out Eric4

It's a very good Python IDE with a builtin debugger. The debugger has views for global variables, local variables and watchpoints.

link|improve this answer
feedback

This reimplementation of the built-in pdb.py has watchpoints.

http://morepypy.blogspot.com/2008/06/pdb-and-rlcompleterng.html

I tried it but, in cursory tries was not able to get it to work.

link|improve this answer
Agreed. The 'watch' command did nothing. – a paid nerd Sep 16 '09 at 9:56
feedback

Take a look at PyScripter. It has an integrated debugger, watch windows and much more. It's open source and is developed here.

HTH

link|improve this answer
PyScripter looks interesting but I'm on OS X and the P4D stuff appears to be only for Windows/Linux. – John Oct 16 '08 at 10:44
feedback

It's too bad that the standard pdb module that comes with python itself does not yet support watchpoints.

Described here: http://wiki.python.org/moin/PdbImprovments

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.