摘要: #coding=utf8import sysdef test(): gf = sys._getframe print dir(gf()) print 'function name:',sys._getframe(1).f_code.co_name if sys._getframe(1).f_code.co_name != 'a': print 'Error' else: print 'Ok' def a(): test()def b(): test()class t(object): def a(self): ... 阅读全文
posted @ 2013-04-23 17:21 践道者 阅读(415) 评论(0) 推荐(0) 编辑