-
Notifications
You must be signed in to change notification settings - Fork 4.1k
GH-49103: [Python] Add internal type system stubs (_types, error, _stubs_typing) #48622
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
rok
wants to merge
13
commits into
apache:main
Choose a base branch
from
rok:pyarrow-stubs-pr2-core-types
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,049
−8
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
4d46384
check stubs are included at wheel build time
rok 61fef02
Add internal types and helpers
rok 703f3ac
Update python/pyarrow-stubs/pyarrow/_stubs_typing.pyi
rok dafa034
post rebase changes
rok 1d17049
linting and formatting
rok facfeb5
add pyi check to pre-commit
rok e208ecc
ruff format
rok a06c271
Apply suggestions from code review
rok 4e50006
review feedback
rok ef1a8dc
Decimals should be covariant
rok df7dce5
fix editable install collisions
rok 104369a
review feedback
rok 1c038ff
move placeholder
rok File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,154 @@ | ||
| # Licensed to the Apache Software Foundation (ASF) under one | ||
| # or more contributor license agreements. See the NOTICE file | ||
| # distributed with this work for additional information | ||
| # regarding copyright ownership. The ASF licenses this file | ||
| # to you under the Apache License, Version 2.0 (the | ||
| # "License"); you may not use this file except in compliance | ||
| # with the License. You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, | ||
| # software distributed under the License is distributed on an | ||
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| # KIND, either express or implied. See the License for the | ||
| # specific language governing permissions and limitations | ||
| # under the License. | ||
|
|
||
| import datetime as dt | ||
|
|
||
| from collections.abc import Collection, Container, Iterator, Sequence, Sized | ||
| from decimal import Decimal | ||
| from typing import Any, Literal, Protocol, TypeAlias, TypeVar | ||
|
|
||
| import numpy as np | ||
|
|
||
| from numpy.typing import NDArray | ||
|
|
||
| from pyarrow import lib | ||
| from pyarrow.lib import ChunkedArray | ||
|
|
||
| ArrayLike: TypeAlias = Any | ||
| ScalarLike: TypeAlias = Any | ||
| Order: TypeAlias = Literal["ascending", "descending"] | ||
| JoinType: TypeAlias = Literal[ | ||
| "left semi", | ||
| "right semi", | ||
| "left anti", | ||
| "right anti", | ||
| "inner", | ||
| "left outer", | ||
| "right outer", | ||
| "full outer", | ||
| ] | ||
| Compression: TypeAlias = Literal[ | ||
| "gzip", "bz2", "brotli", "lz4", "lz4_frame", "lz4_raw", "zstd", "snappy" | ||
| ] | ||
| NullEncoding: TypeAlias = Literal["mask", "encode"] | ||
| NullSelectionBehavior: TypeAlias = Literal["drop", "emit_null"] | ||
| TimeUnit: TypeAlias = Literal["s", "ms", "us", "ns"] | ||
|
|
||
| IntegerType: TypeAlias = ( | ||
| lib.Int8Type | ||
| | lib.Int16Type | ||
| | lib.Int32Type | ||
| | lib.Int64Type | ||
| | lib.UInt8Type | ||
| | lib.UInt16Type | ||
| | lib.UInt32Type | ||
| | lib.UInt64Type | ||
| ) | ||
|
|
||
| Mask: TypeAlias = ( | ||
| Sequence[bool | None] | ||
| | NDArray[np.bool_] | ||
| | lib.Array[lib.Scalar[lib.BoolType]] | ||
| | ChunkedArray[Any] | ||
| ) | ||
| Indices: TypeAlias = ( | ||
| Sequence[int | None] | ||
| | NDArray[np.integer[Any]] | ||
| | lib.Array[lib.Scalar[IntegerType]] | ||
| | ChunkedArray[Any] | ||
| ) | ||
rok marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| PyScalar: TypeAlias = ( | ||
| bool | ||
| | int | ||
| | float | ||
| | Decimal | ||
| | str | ||
| | bytes | ||
| | dt.date | ||
| | dt.datetime | ||
| | dt.time | ||
| | dt.timedelta | ||
| ) | ||
|
|
||
| _T = TypeVar("_T") | ||
| _V = TypeVar("_V", covariant=True) | ||
|
|
||
| SingleOrList: TypeAlias = list[_T] | _T | ||
|
|
||
|
|
||
| class SupportsDunderEQ(Protocol): | ||
| def __eq__(self, other: object, /) -> bool: ... | ||
|
|
||
|
|
||
| class SupportsDunderLT(Protocol): | ||
| def __lt__(self, other: object, /) -> bool: ... | ||
|
|
||
|
|
||
| class SupportsDunderGT(Protocol): | ||
| def __gt__(self, other: object, /) -> bool: ... | ||
|
|
||
|
|
||
| class SupportsDunderLE(Protocol): | ||
| def __le__(self, other: object, /) -> bool: ... | ||
|
|
||
|
|
||
| class SupportsDunderGE(Protocol): | ||
| def __ge__(self, other: object, /) -> bool: ... | ||
|
|
||
|
|
||
| FilterTuple: TypeAlias = ( | ||
| tuple[str, Literal["=", "==", "!="], SupportsDunderEQ] | ||
| | tuple[str, Literal["<"], SupportsDunderLT] | ||
| | tuple[str, Literal[">"], SupportsDunderGT] | ||
| | tuple[str, Literal["<="], SupportsDunderLE] | ||
| | tuple[str, Literal[">="], SupportsDunderGE] | ||
| | tuple[str, Literal["in", "not in"], Collection] | ||
| | tuple[str, str, Any] # Allow general str for operator to avoid type errors | ||
| ) | ||
|
|
||
|
|
||
| class Buffer(Protocol): ... | ||
|
|
||
|
|
||
| class SupportsPyBuffer(Protocol): ... | ||
|
|
||
|
|
||
| class SupportsArrowStream(Protocol): | ||
| def __arrow_c_stream__(self, requested_schema=None, /) -> Any: ... | ||
|
|
||
|
|
||
| class SupportsPyArrowArray(Protocol): | ||
| def __arrow_array__(self, type=None, /) -> Any: ... | ||
|
|
||
|
|
||
| class SupportsArrowArray(Protocol): | ||
| def __arrow_c_array__(self, requested_schema=None, /) -> Any: ... | ||
|
|
||
|
|
||
| class SupportsArrowDeviceArray(Protocol): | ||
| def __arrow_c_device_array__(self, requested_schema=None, /, **kwargs) -> Any: ... | ||
|
|
||
|
|
||
| class SupportsArrowSchema(Protocol): | ||
| def __arrow_c_schema__(self) -> Any: ... | ||
|
|
||
|
|
||
| class NullableCollection(Sized, Container[_V], Protocol[_V]): | ||
| def __iter__(self) -> Iterator[_V] | Iterator[_V | None]: ... | ||
| def __len__(self) -> int: ... | ||
| def __contains__(self, item: Any, /) -> bool: ... | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Just for reference)
This is what our
pre-commitlooks like, since we haveruffandflake8in there - the answer to (#48622 (comment)) is probably something similar 🙂There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will revisit seperately!