(self)
| 2700 | return self |
| 2701 | |
| 2702 | def _lower(self): |
| 2703 | if not isinstance(self, BlockwiseTail): |
| 2704 | # Lower to Blockwise |
| 2705 | if is_index_like(self._meta): |
| 2706 | return BlockwiseTailIndex( |
| 2707 | Partitions(self.frame, [self.frame.npartitions - 1]), self.n |
| 2708 | ) |
| 2709 | return BlockwiseTail( |
| 2710 | Partitions(self.frame, [self.frame.npartitions - 1]), self.n |
| 2711 | ) |
| 2712 | |
| 2713 | |
| 2714 | class BlockwiseTail(Tail, Blockwise): |
nothing calls this directly
no test coverage detected