The situation is this: I downloaded the Google App Engine SDK. I wrote my helloworld application, which runs locally on my computer. I have to use PyScripter as an IDE. I cannot use Eclipse, this will not be the right solution for my problem.
In PyScripter, I set "Run Configuration" so that the server instance runs locally (either in "start" mode or in "debug mode"), and it can access the application through a web browser, gaining access to "localhost" ".
Now the problem is that breakpoints are ignored. I set a breakpoint, restarted the browser, and the answer appears without stopping debugging at the breakpoint that I set in my own function. I canβt debug at all.
The question is, how can I debug the application using the configuration you described?
(Note: I already use the python "remote" mechanism in PyScripter to start the local server)
source
share