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
We can probably move Series.__array_ufunc__ to core/base.py (once it's in)
The primary difference is that ufunc(Index, Series) should defer to Series by returning NotImplemented. This may be as easy as excluding Series from Index._HANDLED_TYPES and including Index in Series._HANDLED_TYPES.
The text was updated successfully, but these errors were encountered:
We can probably move
Series.__array_ufunc__
tocore/base.py
(once it's in)The primary difference is that
ufunc(Index, Series)
should defer toSeries
by returning NotImplemented. This may be as easy as excludingSeries
fromIndex._HANDLED_TYPES
and includingIndex
inSeries._HANDLED_TYPES
.The text was updated successfully, but these errors were encountered: