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
Due to some performance optimizations introduced in pandas-dev/pandas#40353, Pandas turns DataFrame.iloc[slice(x, y, z)] into __getitem__((..., slice(x, y, z)) on the ExtensionArray that backs any column defined with an extension type. This bug is breaking indexing on TensorArrays. TensorArray.__getitem__() receives the multidimensional slice spec and returns a 2D slice of the underlying NumPy array instead of the 1D slice that the caller expects to get.
The text was updated successfully, but these errors were encountered:
Due to some performance optimizations introduced in pandas-dev/pandas#40353, Pandas turns
DataFrame.iloc[slice(x, y, z)]
into__getitem__((..., slice(x, y, z))
on the ExtensionArray that backs any column defined with an extension type. This bug is breaking indexing on TensorArrays.TensorArray.__getitem__()
receives the multidimensional slice spec and returns a 2D slice of the underlying NumPy array instead of the 1D slice that the caller expects to get.The text was updated successfully, but these errors were encountered: