(self)
| 68 | |
| 69 | @handle |
| 70 | def _cleanup(self) -> None: |
| 71 | if self.address: |
| 72 | if (type(~self) is not str) and (self.decref): |
| 73 | remove_ref(~self) |
| 74 | |
| 75 | |
| 76 | class FunctionPointer(BaseCPointer[Callable[P, T]]): # type: ignore |
nothing calls this directly
no test coverage detected