I am trying to use the Python Breakpoint Management feature in PyDev.
Debugging the next script after selecting a run β "Managing Python exception breakpoints" and selecting all exceptions.
print 1 print 2 assert(False) print 3
nothing happens and I just get the exception as usual.
EDIT: -
There seems to be a problem in matplotlib. The following script shows the problem that I saw earlier. pydev breaks somewhere in pylab, and I cannot exit to my script.
import pylab as pyp print 1 print 2 assert(False) print 3
source share