(self, *args, **kwargs)
| 2365 | return self._vectorize_call(func=func, args=vargs) |
| 2366 | |
| 2367 | def __call__(self, *args, **kwargs): |
| 2368 | if self.pyfunc is np._NoValue: |
| 2369 | self._init_stage_2(*args, **kwargs) |
| 2370 | return self |
| 2371 | |
| 2372 | return self._call_as_normal(*args, **kwargs) |
| 2373 | |
| 2374 | def _get_ufunc_and_otypes(self, func, args): |
| 2375 | """Return (ufunc, otypes).""" |
nothing calls this directly
no test coverage detected