(self, other)
| 1349 | |
| 1350 | @final |
| 1351 | def _indexed_same(self, other) -> bool: |
| 1352 | return all( |
| 1353 | self._get_axis(a).equals(other._get_axis(a)) for a in self._AXIS_ORDERS |
| 1354 | ) |
| 1355 | |
| 1356 | @final |
| 1357 | def equals(self, other: object) -> bool: |
no test coverage detected