milesgranger opened a new pull request, #14000: URL: https://github.com/apache/arrow/pull/14000
[ARROW-16174](https://issues.apache.org/jira/browse/ARROW-16174) Current behavior ```python import pyarrow as pa array = pa.array([[1], [2], [3]], type=pa.list_(pa.int64(), list_size=1)) array[2:].flatten().to_pylist() [1, 2, 3] ``` After this patch ```python import pyarrow as pa array = pa.array([[1], [2], [3]], type=pa.list_(pa.int64(), list_size=1)) array[2:].flatten().to_pylist() [3] ``` -- 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]
