摘要:
import sys def pstack(depth = 0): frame = sys._getframe(depth) cnt = 0 while frame: print "###", cnt, frame.f_code.co_name, frame.f_code.co_filename, frame.f_lineno fra... 阅读全文
posted @ 2015-08-12 23:16
aprial
阅读(1283)
评论(0)
推荐(0)