1
可能重複:
How can I get the source code of a Python function?返回功能代碼
如何退還我的函數的代碼? 的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>