Sublime Forum

Debug Plugins with Pdb

#1

Hey guys, I’ve been unsuccessfully trying to debug some open source plugins using pdb.

I saw this article: stackoverflow.com/questions/1638 … evelopment
but the result achieve is not the same.

Opening the console…

import pdb, sys; pdb.Pdb(stdout=sys.stdout).set_trace()
Traceback (most recent call last):
File “”, line 1, in
File “/usr/lib/python2.6/bdb.py”, line 50, in trace_dispatch
return self.dispatch_return(frame, arg)
File “/usr/lib/python2.6/bdb.py”, line 84, in dispatch_return
if self.quitting: raise BdbQuit
bdb.BdbQuit

Thanks in advance.

0 Likes