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
Currently an invalid comparison (eq and ne only) returns an np.ndarray[bool].
In [5]: i = pd.Index([1, 2, 3], dtype='datetime64[ns]')
In [6]: s = pd.Series([1, 2, 3], dtype='timedelta64[ns]')
In [7]: i == s
Out[7]: array([False, False, False])
Should this follow __pandas_priority__ now and return Series[bool]?