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
this looks like a bug in the impl of core/strings/_get_array_list, which is checking the 0th element if its a list/ndarray. prob should be others.values[0]
hah....the problem is that since other is a series, others[0] selects the 0th element (which it doesn't have, hence the KeyError). It is trying to figure out whether the 0th element is actually a list or ndarray (rather than a scalar).
actually maybe this should be
_values_from_object(others)[0] because then others could be a ndarray OR a Series (I don't know if that's possible, but guards against it).
... so far, everything is fine. Now filter the index and retry:
... you will get a KeyError (tested against git, commit 90fa87e ):
The text was updated successfully, but these errors were encountered: