(self, name: str)
| 274 | raise KeyError(f"{self.name!r} has no attribute {name!r}") |
| 275 | |
| 276 | def method_sig(self, name: str) -> FuncSignature: |
| 277 | return self.method_decl(name).sig |
| 278 | |
| 279 | def has_method(self, name: str) -> bool: |
| 280 | try: |
no test coverage detected