| 1187 | |
| 1188 | |
| 1189 | class _Align(Blockwise): |
| 1190 | _parameters = ["frame", "other", "join", "axis", "fill_value"] |
| 1191 | _defaults = {"join": "outer", "fill_value": None, "axis": None} |
| 1192 | _keyword_only = ["join", "fill_value", "axis"] |
| 1193 | operation = M.align |
| 1194 | _preserves_partitioning_information = True |
| 1195 | |
| 1196 | def _divisions(self): |
| 1197 | # Aligning, so take first frames divisions |
| 1198 | return self.frame._divisions() |
| 1199 | |
| 1200 | |
| 1201 | class AlignGetitem(Blockwise): |