Is there a free python debugger that has watchpoin

2019-02-13 13:00发布

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.

5条回答
ゆ 、 Hurt°
2楼-- · 2019-02-13 13:41

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.

查看更多
Viruses.
3楼-- · 2019-02-13 13:42

Please look what pydev in eclipse offers...

查看更多
Luminary・发光体
4楼-- · 2019-02-13 13:42

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.

查看更多
Melony?
5楼-- · 2019-02-13 13:50

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

HTH

查看更多
迷人小祖宗
6楼-- · 2019-02-13 13:50

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

查看更多
登录 后发表回答