Is there a free python debugger that has watchpoints? [closed]

∥☆過路亽.° 提交于 2019-11-30 03:35:25

问题


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.


回答1:


Please look what pydev in eclipse offers...




回答2:


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.




回答3:


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

HTH




回答4:


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




回答5:


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.



来源:https://stackoverflow.com/questions/207904/is-there-a-free-python-debugger-that-has-watchpoints

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!