Thanks for the tip, winpdb works well with web.py! Pdb doesn't though.
I tried the following simple example and it hangs when it gets to the
"pdb.set_trace()" line.

import web
import pdb

urls = (
    '/', 'index')

class index:
    def GET(self):
        pdb.set_trace()
        print "Hello World"

if __name__ == "__main__": web.run(urls, globals())



On Jan 15, 7:40 pm, "Aaron Swartz" <[EMAIL PROTECTED]> wrote:
> There might be some troubles with threading. But I know some people
> got it to work with winpdb (which, despite the name, is not just for
> windows):http://www.winpdb.org/
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to