Skip to content
Merged
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 pyarrow-stubs/__lib_pxi/table.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ from .io import Buffer
from .ipc import RecordBatchReader
from .scalar import Int64Scalar, Scalar
from .tensor import Tensor
from .types import DataType, _AsPyType, _BasicDataType, _DataTypeT
from .types import _AsPyType, _BasicDataType, _DataType_CoT, _DataTypeT

_Scalar_CoT = TypeVar("_Scalar_CoT", bound=Scalar, covariant=True)

class ChunkedArray(_PandasConvertible[pd.Series], Generic[_Scalar_CoT]):
@property
def data(self) -> Self: ...
@property
def type(self) -> DataType: ...
def type(self: ChunkedArray[Scalar[_DataType_CoT]]) -> _DataType_CoT: ...
def length(self) -> int: ...
__len__ = length
def to_string(
Expand Down