可能重复:
如何获取 Python 函数的源代码?
如何返回我的函数的代码?func_name 方法按预期工作,但 func_code 没有
>>> def testthis(): print 'test successful'
>>> testthis()
test successful
>>> testthis.func_name
'testthis'
>>> testthis.func_code
<code object testthis at 0124D728, file "<pyshell#281>", line 1>