(cls, sigs: list[FunctionSig], is_abstract: bool = False)
| 201 | |
| 202 | @classmethod |
| 203 | def _from_sigs(cls, sigs: list[FunctionSig], is_abstract: bool = False) -> CFunctionStub: |
| 204 | return CFunctionStub( |
| 205 | sigs[0].name, "\n".join(sig.format_sig()[:-4] for sig in sigs), is_abstract |
| 206 | ) |
| 207 | |
| 208 | def __get__(self) -> None: # noqa: PLE0302 |
| 209 | """ |
nothing calls this directly
no test coverage detected