PyDev Breakpoints in App Engine 1.7.6 broken?

后端 未结 3 1891
别那么骄傲
别那么骄傲 2020-12-31 07:41

I just upgraded to the App Engine 1.7.6 SDK for my python app and realised that breakpoints no longer work in PyDev (Eclipse plugin) when using the new dev_appserver.p

3条回答
  •  星月不相逢
    2020-12-31 08:05

    Do you mean pdb.set_trace() isn't working?

    Look for the function MonkeyPatchPdb() in google/appengine/tools/dev_appserver.py

    Run that somewehere in your own project before you use pdb and it should fix it.

提交回复
热议问题