What's the recommended method to debug Python web servers (I have Plone/Zope) with Sublime Text 2?
Set real breakpoints in the text editor...
... preferably through line context sensitive command and have a marker in the text editor margin ...
...then have a running Python web server (local process) instantly honour the breakpoints without restart...
... and when hitting the breakpoint open a debug prompt in a terminal or some other window, can be pdb
The goal is that the breakpoints would not be hard import pdb ; pdb.set_trace() style breakpoints as you need to restart the software to skip such breakpoint and you cannot enable / disable it run-time.
Platform: OSX.