當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python inspect.Signature.replace用法及代碼示例


用法:

replace(*[, parameters][, return_annotation])

根據調用的實例替換創建一個新的簽名實例。可以傳遞不同的parameters 和/或return_annotation 來覆蓋基本簽名的相應屬性。要從複製的簽名中刪除 return_annotation,請傳入 Signature.empty

>>> def test(a, b):
...     pass
>>> sig = signature(test)
>>> new_sig = sig.replace(return_annotation="new return anno")
>>> str(new_sig)
"(a, b) -> 'new return anno'"

相關用法


注:本文由純淨天空篩選整理自python.org大神的英文原創作品 inspect.Signature.replace。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。