diff --git a/pandas/core/indexes/base.py b/pandas/core/indexes/base.py index 057adceda7efd..b12a556a8291d 100644 --- a/pandas/core/indexes/base.py +++ b/pandas/core/indexes/base.py @@ -518,7 +518,12 @@ def is_(self, other) -> bool: Returns ------- - True if both have same underlying data, False otherwise : bool + bool + True if both have same underlying data, False otherwise. + + See Also + -------- + Index.identical : Works like ``Index.is_`` but also checks metadata. """ # use something other than None to be clearer return self._id is getattr(other, "_id", Ellipsis) and self._id is not None