(self)
| 923 | return calc_divisions_for_align(*args, allow_shuffle=False) |
| 924 | |
| 925 | def _lower(self): |
| 926 | args = [self.frame] + self.operands[len(self._parameters) :] |
| 927 | args = maybe_align_partitions(*args, divisions=self._divisions()) |
| 928 | return MapOverlap( |
| 929 | args[0], |
| 930 | self.func, |
| 931 | self.before, |
| 932 | self.after, |
| 933 | self._meta, |
| 934 | self.enforce_metadata, |
| 935 | self.transform_divisions, |
| 936 | self.clear_divisions, |
| 937 | self.align_dataframes, |
| 938 | self.token, |
| 939 | self.kwargs, |
| 940 | *args[1:], |
| 941 | ) |
| 942 | |
| 943 | |
| 944 | class MapOverlap(MapPartitions): |
nothing calls this directly
no test coverage detected