管理Python异常断点
我正在尝试使用 PyDev 中的“管理 Python 异常断点”功能。
选择运行后调试以下脚本-> “管理 Python 异常断点”并选择所有异常。
print 1
print 2
assert(False)
print 3
什么也没发生,我只是像平常一样遇到异常。
编辑:-
问题似乎出在 matplotlib 上。以下脚本展示了我之前看到的问题。 pydev 破坏了 pylab 中的某些地方,我无法退出我的脚本。
import pylab as pyp
print 1
print 2
assert(False)
print 3
I'm trying to use the 'Manage Python Exception Breakpoints' feature in PyDev.
Debugging the following script after selecting run -> 'Manage Python Exception Breakpoints' and selecting all exceptions.
print 1
print 2
assert(False)
print 3
nothing happens and I just get an exception as normal.
EDIT:-
It seems the problem is with matplotlib. the following script exhibits the problem I saw previously. pydev breaks somewehere in pylab and I can't step out to my script.
import pylab as pyp
print 1
print 2
assert(False)
print 3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚在这里检查了它,它似乎对我来说工作正常......你在调试模式下运行吗? (有关如何在调试模式下运行的步骤,请访问:http://pydev.org/manual_101_run.html)
I just checked it here and it seems to work properly for me... Are you running in debug mode? ( there are steps on how to run in debug mode at: http://pydev.org/manual_101_run.html )