AlenkaF commented on issue #46606: URL: https://github.com/apache/arrow/issues/46606#issuecomment-2911813762
Hm, I get a different behaviour: ```python Python 3.12.10 (main, Apr 8 2025, 11:35:47) [Clang 16.0.0 (clang-1600.0.26.6)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import pyarrow as pa >>> a = pa.array([1.2, 3.5, None]) >>> a <pyarrow.lib.DoubleArray object at 0x10c9747c0> [ 1.2, 3.5, null ] >>> a[-1:] <pyarrow.lib.DoubleArray object at 0x10c974820> [ null ] >>> a[::-1] <pyarrow.lib.DoubleArray object at 0x10c9748e0> [ null, 3.5, 1.2 ] >>> pa.__version__ '20.0.0.dev356+g7c820dcbda.d20250520' ``` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org