We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 9 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
您应该查看 Eric4
它是一个非常好的 Python IDE,带有内置调试器。
调试器具有全局变量、局部变量和观察点的视图。
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.
请看看 eclipse 中的 pydev 提供了什么...
Please look what pydev in eclipse offers...
查看 PyScripter。 它有一个集成的调试器、观察窗口等等。
它是开源的,在此处开发。
华泰
Take a look at PyScripter. It has an integrated debugger, watch windows and much more.
It's open source and is developed here.
HTH
可惜的是python本身自带的标准pdb模块还不支持观察点。
此处描述:http://wiki.python.org/moin/PdbImprovments
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
内置 pdb.py 的重新实现具有观察点。
http://morepypy.blogspot.com/2008/06/pdb- and-rlcompleterng.html
我尝试过,但是粗略地尝试后无法让它工作。
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.