Has anyone had success setting up Flask project in WingIDE so that you can do breakpoint and use the debug probe on incoming requests?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

If you turn the Flask debugging off, it should allow for WingIDE's debugging to take over. This works for Eclipse; unfortunately, I have no experience with WingIDE. It's worth a shot at least.

if __name__ == '__main__':
    app.debug = False
    app.run()
link|improve this answer
You're right, turning off flask's own debugging did the trick. – Manto Jun 9 '11 at 4:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.