there is a trouble setting the visual Eclipse+PyDev debugger to work with
web2py.
I got the Eclipse debugger to come to a breakpoint in
*applications/welcome/models*/db.py
but if I set up a breakpoint in
*applications/welcome/controllers*/default.py
at *index* the debugger does not stops at the breakpoint.
If I insert:
import pdb, sys
debugger = pdb.Pdb(stdin=sys.__stdin__,
stdout=sys.__stdout__)
debugger.set_trace()
before index, pdb stops there.
Why Eclipse debugger cannot stops at controllers?