【问题标题】:Manage Python exception breakpoints管理 Python 异常断点
【发布时间】:2023-04-05 09:32:01
【问题描述】:

我正在尝试使用 PyDev 中的“管理 Python 异常断点”功能。

选择运行 -> 'Manage Python Exception Breakpoints' 并选择所有异常后调试以下脚本。

print 1
print 2
assert(False)
print 3

什么都没有发生,我只是像往常一样得到一个异常。

编辑:-

看来问题出在 matplotlib 上。以下脚本展示了我之前看到的问题。 pydev 在 pylab 中的某个地方中断,我无法跳出我的脚本。

import pylab as pyp

print 1
print 2
assert(False)
print 3

【问题讨论】:

    标签:
    python
    eclipse
    debugging
    pydev