我试图找出从模块中检索到的方法的参数。我发现了一个inspect
具有方便功能的模块,getargspec
. 它适用于我定义的函数,但不适用于导入模块中的函数。
import math, inspect
def foobar(a,b=11): pass
inspect.getargspec(foobar) # this works
inspect.getargspec(math.sin) # this doesn't
我会收到这样的错误:
File "C:\...\Python 2.5\Lib\inspect.py", line 743, in getargspec
raise TypeError('arg is not a Python function')
TypeError: arg is not a Python function
inspect.getargspec
仅针对本地功能设计还是我做错了什么?