Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/pyarrow/array.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -1304,7 +1304,7 @@ cdef class Array(_PandasConvertible):
The value type of the array.
length : int
The number of values in the array.
buffers : List[Buffer]
buffers : List[Buffer | None]
The buffers backing this array.
null_count : int, default -1
The number of null entries in the array. Negative value means that
Expand Down Expand Up @@ -4013,7 +4013,7 @@ cdef class DictionaryArray(Array):
type : pyarrow.DataType
length : int
The number of values in the array.
buffers : List[Buffer]
buffers : List[Buffer | None]
The buffers backing the indices array.
dictionary : pyarrow.Array, ndarray or pandas.Series
The array of values referenced by the indices.
Expand Down