Manage Python Exception Exclusion Points

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 
+1
source share
1 answer

I just checked it here and it seems to work correctly for me ... Do you work in debug mode? (there are steps to run in debug mode at: http://pydev.org/manual_101_run.html )

0
source

Source: https://habr.com/ru/post/1399393/


All Articles