This is an automated email from the ASF dual-hosted git repository.
alenka pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 4d6b3a9738 GH-41672: [Python][Doc] Clarify docstring of
FixedSizeListArray.values that it ignores the offset (#46144)
4d6b3a9738 is described below
commit 4d6b3a973850c63c2a3638d6a708de0e40579378
Author: Nic Crane <[email protected]>
AuthorDate: Tue Apr 15 11:50:15 2025 +0100
GH-41672: [Python][Doc] Clarify docstring of FixedSizeListArray.values that
it ignores the offset (#46144)
### Rationale for this change
Update docstring to explicitly mention that FixedSizeListArray.values
ignores the offset
### What changes are included in this PR?
Updated docstring to mention this
### Are these changes tested?
No
### Are there any user-facing changes?
No
* GitHub Issue: #41672
Authored-by: Nic Crane <[email protected]>
Signed-off-by: AlenkaF <[email protected]>
---
python/pyarrow/array.pxi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/pyarrow/array.pxi b/python/pyarrow/array.pxi
index b738dc04b0..4f1acce95e 100644
--- a/python/pyarrow/array.pxi
+++ b/python/pyarrow/array.pxi
@@ -3628,7 +3628,7 @@ cdef class FixedSizeListArray(BaseListArray):
def values(self):
"""
Return the underlying array of values which backs the
- FixedSizeListArray.
+ FixedSizeListArray ignoring the array's offset.
Note even null elements are included.