I'm testing out Komodo and am particularly interested in remote debugging. I'm using the following script to invoke just-in-time debugging. This runs, hits the exception, and connects remotely to Komodo. The script comes up in the debugger with the offending line highlight. However, the interactive shell is not interactive. If I type 'dir()' or anything else, I get no response.
I've tried this running Komodo on a linux box (Redhat Enterprise 5) and a Mac (10.5.2) with the same results. Am I missing something? The docs suggest I should get an interactive prompt so I can probe the existing state.
Thanks,
jay
from dbgp.client import brkOnExcept
brkOnExcept(host='localhost')
a = range(10)
for i in a:
print a[i+1]
print "All done!"
I've added a bug for this:
http://bugs.activestate.com/show_bug.cgi?id=76999
You can add yourself as a CC on the bug, I'll try to get this addressed for the next release.