我正在尝试使用该inspect
模块,但似乎我不能在内置(本机?)类上使用它,否则我误解了。
我正在使用 Python 2.7 并尝试使用 Python 3.2。
这是有效的:
>>> import inspect
>>> class C:
... def __init__(self,a,b=4):
... self.sum = a + b
...
>>> inspect.getargspec(C.__init__)
ArgSpec(args=['self','a', 'b'], varargs=None, keywords=None, defaults=(4,))
这不起作用:
>>> import inspect
>>> import ast
>>> inspect.getargspec(ast.If.__init__)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/inspect.py", line 813, in getargspec
raise TypeError('{!r} is not a Python function'.format(func))
TypeError: <slot wrapper '__init__' of '_ast.AST' objects> is not a Python function
我想知道是否有另一种技术可以自动获取这些参数?
(在我的情况下,我考虑了一种替代方法,即解析 Python 语法,解释如何使用我在 PyPy 项目的源代码中看到的一些代码来初始化 AST 节点的 ASDL 文件,但我想知道是否有另一种方法)