用法:
classmethod from_callable(obj, *, follow_wrapped=True, globalns=None, localns=None)
返回给定可调用
obj
的Signature
(或其子类)对象。传递follow_wrapped=False
以获取obj
的签名,而不打开其__wrapped__
链。globalns
和localns
将在解析注释时用作命名空间。此方法简化了
Signature
的子类化:class MySignature(Signature): pass sig = MySignature.from_callable(min) assert isinstance(sig, MySignature)
3.5 版中的新函数。
3.10 版中的新函数:
globalns
和localns
参数。
相关用法
- Python inspect.Signature.replace用法及代码示例
- Python inspect.Parameter.replace用法及代码示例
- Python inspect.Parameter.kind用法及代码示例
- Python inspect.isasyncgenfunction用法及代码示例
- Python inspect.isawaitable用法及代码示例
- Python inspect.BoundArguments.apply_defaults用法及代码示例
- Python inspect.BoundArguments用法及代码示例
- Python inspect.Parameter.kind.description用法及代码示例
- Python inspect.formatargspec用法及代码示例
- Python inspect.signature用法及代码示例
- Python inspect.getcallargs用法及代码示例
- Python scipy integrate.trapz用法及代码示例
- Python int转exponential用法及代码示例
- Python integer转string用法及代码示例
- Python scipy interpolate.CubicHermiteSpline.solve用法及代码示例
- Python scipy interpolate.CubicSpline.solve用法及代码示例
- Python int.from_bytes用法及代码示例
- Python scipy integrate.cumtrapz用法及代码示例
- Python scipy interpolate.PchipInterpolator.solve用法及代码示例
- Python int.bit_length用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 inspect.Signature.from_callable。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。