(self, other)
| 307 | |
| 308 | @check_if_handled_given_other |
| 309 | def __rdivmod__(self, other): |
| 310 | from dask.array._array_expr._ufunc import divmod |
| 311 | |
| 312 | return divmod(other, self) |
| 313 | |
| 314 | def __array_function__(self, func, types, args, kwargs): |
| 315 | # TODO(expr-soon): Not done yet, but needed for assert_eq to identify us as an Array |