mariosasko opened a new issue, #35573: URL: https://github.com/apache/arrow/issues/35573
### Describe the bug, including details regarding any error messages, version, and platform. MLE: ```python import pyarrow as pa import numpy as np np_arr = np.random.randn(100, 3, 4) pa_arr = pa.FixedShapeTensorArray.from_numpy_ndarray(np_arr) pa_arr[:2].to_numpy_ndarray() ``` The error stems from the following line: https://github.com/apache/arrow/blob/cd6e2a4d2b9373b942da18b4cc82cb41431764d9/python/pyarrow/array.pxi#L3156 (`.values` ignores the slicing offset) ### Component(s) Python -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
