如何在Sublime Text 3中设置python调试器(
pdb)断点?
@H_301_2@SublimeREPL或Python Breakpoints都使用默认的python构建系统进行失败:
print "hello" # code runs fine without this breakpoint import pdb; pdb.set_trace() print "bye" >>>File "C:\Python27\lib\bdb.py",line 49,in trace_dispatch >>>return self.dispatch_line(frame) >>>File "C:\Python27\lib\bdb.py",line 68,in dispatch_line >>>if self.quitting: raise BdbQuit@H_301_2@以上问题出现documented,但没有明显的修复。还是有答案盯着我?