Run web2py from console, and put "import pdb; pdb.set_trace()" right above the line of code where you want to start debugging. From there, use "n" to go to the next line, "s" to "step into" the next line, and "c" to continue execution.
Good luck!
Run web2py from console, and put "import pdb; pdb.set_trace()" right above the line of code where you want to start debugging. From there, use "n" to go to the next line, "s" to "step into" the next line, and "c" to continue execution.
Good luck!