You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where _add_offset_array can use self.astype('O') + np.array(other) but _sub_offset_array has to use self.__class__(self.astype('O').values - np.array(other))
Curious about why
Index.__add__
tries does the natural thing butIndex.__sub__
raisesTypeError
.The text was updated successfully, but these errors were encountered: