There is a project on Django and I use PyCharm. When I run a project locally and use breakpoint in the used Python file, the project does not stop at breakpoint .
So it should be when developing using Django ?
There is a project on Django and I use PyCharm. When I run a project locally and use breakpoint in the used Python file, the project does not stop at breakpoint .
So it should be when developing using Django ?
In order for the "pause marks" to work, you need to start the project using the debugger (icon depicting a bug, next to the arrow).
Source: https://ru.stackoverflow.com/questions/628086/
All Articles