返回功能代码

时间:2012-08-10 13:03:48

标签: python

  

可能重复:
  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>

1 个答案:

答案 0 :(得分:1)

您可以使用

  

inspect.getsourcelines(执行)

获取代码。

In [1]: def testthis(): print "hello"

In [2]: import inspect

In [3]: inspect.getsourcelines(testthis)
Out[3]: ([u'def testthis(): print "hello"\n'], 1)