(self, name)
| 44 | |
| 45 | class _ufunc_wrapper(ABC): |
| 46 | def __init__(self, name): |
| 47 | self.__name__ = name |
| 48 | if hasattr(np, name): |
| 49 | self._create_doc() |
| 50 | |
| 51 | @abstractmethod |
| 52 | def __call__(self, *args, **kwargs): |
nothing calls this directly
no test coverage detected