Skip to content

Commit

Permalink
GH-35413: [Python] Add concrete floating point array types to pyarrow…
Browse files Browse the repository at this point in the history
… public API (#35414)

### Rationale for this change

These concrete types appear to have been overlooked.

### What changes are included in this PR?

n/a

### Are these changes tested?

n/a

### Are there any user-facing changes?

Yes - I didn't rebuild docs, do I need to do that?
* Closes: #35413

Authored-by: Spencer Nelson <spencer@b612foundation.org>
Signed-off-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
  • Loading branch information
spenczar committed May 24, 2023
1 parent 6d3d2fc commit 53c0d33
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/source/python/api/arrays.rst
Expand Up @@ -55,6 +55,9 @@ may expose data type-specific methods or properties.
UInt16Array
UInt32Array
UInt64Array
HalfFloatArray
FloatArray
DoubleArray
BinaryArray
StringArray
FixedSizeBinaryArray
Expand All @@ -77,6 +80,7 @@ may expose data type-specific methods or properties.
StructArray
UnionArray
ExtensionArray
FixedShapeTensorArray

.. _api.scalar:

Expand Down Expand Up @@ -107,6 +111,7 @@ classes may expose data type-specific methods or properties.
UInt16Scalar
UInt32Scalar
UInt64Scalar
HalfFloatScalar
FloatScalar
DoubleScalar
BinaryScalar
Expand Down
1 change: 1 addition & 0 deletions python/pyarrow/__init__.py
Expand Up @@ -200,6 +200,7 @@ def print_entry(label, value):
Int16Array, UInt16Array,
Int32Array, UInt32Array,
Int64Array, UInt64Array,
HalfFloatArray, FloatArray, DoubleArray,
ListArray, LargeListArray, MapArray,
FixedSizeListArray, UnionArray,
BinaryArray, StringArray,
Expand Down

0 comments on commit 53c0d33

Please sign in to comment.