def get_thread_and_frame(self, tid, fid, frame_kind):
thread = get_thread_from_id(tid)
cur_frame = None
if thread is not None:
cur_frame = thread.cur_frame
for i in xrange(fid):
cur_frame = cur_frame.f_back
return thread, cur_frame
visualstudio_py_debugger.py 文件源码
python
阅读 22
收藏 0
点赞 0
评论 0
评论列表
文章目录