I have pydev on eclipse and would like to debug handlers. I put breakpoint on a handler and start project in debug mode. When I click on the hyperlink corresponding to handler the control does not come back to breakpoint. Am I missing something here? Also the launch is for google app engine application in python.
|
1
|
|||||
|
|
|
I'm using eclipse with PyDev with appengine and I debug all the time, it's completely possible ! What you have to do is start the program in debug, but you have to start the dev_appserver in debug, not the handler directly. The main module you have to debug is:
With program arguments:
I hope it help |
||
|
|
|
The simplest way to debug is to use the builtin python module Just set the trace in the handler you want to debug.
How do U run the server, from within the eclipse or from the shell. If it is from the shell, then how does eclipse know you are even running the application; You could use an user friendly version of |
||
|
