管理Python异常断点

发布于 2024-12-27 19:28:41 字数 362 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幽蝶幻影 2025-01-03 19:28:41

我刚刚在这里检查了它,它似乎对我来说工作正常......你在调试模式下运行吗? (有关如何在调试模式下运行的步骤,请访问: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 )

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文