Been looking around a bit and I can't seem to find any help on setting up debugging within pyscripter for cherrypy. I have found django, but not cherrypy.
I'm using the remote engine, but the breakpoints aren't catching.
Been looking around a bit and I can't seem to find any help on setting up debugging within pyscripter for cherrypy. I have found django, but not cherrypy.
I'm using the remote engine, but the breakpoints aren't catching.
I suggest you can debug with
pdb
, or preferably withipdb
(which provides some extra features like tab completions).pdb
is the standard( & builtin, as opposed toipdb
) python debugger.