(name)
| 206 | |
| 207 | |
| 208 | def _values_method_wrapper(name): |
| 209 | def func(self, *args, **kwargs): |
| 210 | return _call_possibly_missing_method(self.data, name, args, kwargs) |
| 211 | |
| 212 | func.__name__ = name |
| 213 | func.__doc__ = getattr(np.ndarray, name).__doc__ |
| 214 | return func |
| 215 | |
| 216 | |
| 217 | def _method_wrapper(name): |
no outgoing calls
no test coverage detected
searching dependent graphs…