(self)
| 701 | |
| 702 | @functools.cached_property |
| 703 | def _meta(self): |
| 704 | meta = self.operand("meta") |
| 705 | return _get_meta_map_partitions( |
| 706 | self.args, |
| 707 | [ |
| 708 | e |
| 709 | for e in self.args |
| 710 | if isinstance(e, Expr) and not isinstance(e, _DelayedExpr) |
| 711 | ], |
| 712 | self.func, |
| 713 | self.kwargs, |
| 714 | meta, |
| 715 | self.parent_meta, |
| 716 | ) |
| 717 | |
| 718 | def _divisions(self): |
| 719 | # Unknown divisions |
nothing calls this directly
no test coverage detected