How to remove PyDev debug breakpoints from deleted files?

Whenever I run the debugger from PyDev, it complains about breakpoints on files that no longer exist:

pydev debugger: warning: trying to add breakpoint to file that does not exist: (some file path).py (will have no effect) 

There are about a dozen of these phantom breakpoints for files that no longer exist in my workspace. Is there a way to suppress them, or will I be forever burdened with these messages to delete files without deleting their breakpoints in the first place?

+7
source share
2 answers

Debug Vista should give you access to the Breakpoints view (you can see its title in some screenshots in this guide ).

This view should include all of your breakpoints, even if they relate to deleted files, and allow you to disable or delete them.

+11
source

Today I just ran into this problem, and I figured out how to solve it. Very simple, just click Run → Delete all breakpoints :)

+2
source

All Articles