Remove Pycharm Breakpoint Thing

So ... I really don’t know how to formulate this question, because I don’t know what is happening, but there is this lightning bolt icon that pycharm continues to jump every time I save the file, and it is incredibly annoying. I pasted an icon image, and if anyone knows how to remove this thing, please tell me!

enter image description here

+6
source share
2 answers

This is a Python Exception Breakpoint . I accidentally started the process and created a breakpoint.

I could not delete it using the Run | View Breakpoints Run | View Breakpoints , I suppose, because it was in a running process.

Answer:

 Run | Stop 'your_process' 
+3
source

Launch Pycharm 3.4.1.

A breakpoint with a lightning through it appears on exceptions in the code. You can control this behavior, as well as the breakpoints that you set by selecting:

 (1) On the main menu, choose Run|View Breakpoints. (2) Press Ctrl+Shift+F8. (3) In the toolbar of the Debug tool window, click the two overlapped red circles. 

The pop-up screen will look something like this:

 [x] Python Exception Breakpoint [x] All exceptions [ ] Django Exception Breakpoint [ ] Template render error [x] JavaScript Exception Breakpoints [x] Any exceptions [x] All exceptions enabled [x] Suspend [ ] Log message to console [ ] Remove once hit [ ] Uncaught only 

Check or uncheck the boxes to get the behavior you want.

+2
source

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


All Articles