gpt4 book ai didi

python - 如何获取内置 Python 类构造函数的参数列表?

转载 作者:太空狗 更新时间:2023-10-29 20:46:23 25 4
gpt4 key购买 nike

我正在尝试使用 inspect 模块,但似乎我不能在内置( native ?)类上使用它,否则我误解了。

我正在使用 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 语法,ASDL 文件解释了如何使用我在 PyPy 项目的源代码中看到的一些代码来初始化 AST 节点,但我想知道是否有另一种方式)

最佳答案

无法获取它们,因为它们是 the C code behind the function 的属性,而不是函数本身。

关于python - 如何获取内置 Python 类构造函数的参数列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7628081/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com