(self)
| 3537 | |
| 3538 | @functools.cached_property |
| 3539 | def args(self): |
| 3540 | dfs = [op for op in self.operands if isinstance(op, Expr)] |
| 3541 | return [op for op in dfs if not is_broadcastable(dfs, op)] |
| 3542 | |
| 3543 | def _lower(self): |
| 3544 | # This can be expensive when something that has expensive division |
nothing calls this directly
no test coverage detected