(cls)
| 291 | |
| 292 | |
| 293 | def inject_numpy_same(cls): |
| 294 | # these methods don't return arrays of the same shape as the input, so |
| 295 | # don't try to patch these in for Dataset objects |
| 296 | for name in NUMPY_SAME_METHODS: |
| 297 | setattr(cls, name, _values_method_wrapper(name)) |
| 298 | |
| 299 | |
| 300 | class IncludeReduceMethods: |
no test coverage detected
searching dependent graphs…