MCPcopy
hub / github.com/pandas-dev/pandas / _indexed_same

Method _indexed_same

pandas/core/generic.py:1351–1354  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

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:

Callers 3

_cmp_methodMethod · 0.80
_align_for_opMethod · 0.80
_whereMethod · 0.80

Calls 2

_get_axisMethod · 0.95
equalsMethod · 0.45

Tested by

no test coverage detected