-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Consolidate TypeVars in a single place #5569
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
Merged
Merged
Changes from 10 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
dea2e4d
Consolidate type bounds in a single place
max-sixty b91fa12
e736124
85e3561
More consolidation
max-sixty 3bbed83
1d41f23
Update xarray/core/types.py
max-sixty d0886d8
Update xarray/core/types.py
max-sixty f286faa
Merge branch 'main' into typing
max-sixty 715b444
1893237
Rename T_DSorDA to T_Xarray
max-sixty cdb793e
Update xarray/core/weighted.py
max-sixty 9cf5755
Update xarray/core/rolling_exp.py
max-sixty b8940f7
Merge branch 'main' into typing
max-sixty 4a00bc0
.
max-sixty 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
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,31 @@ | ||
| from __future__ import annotations | ||
|
|
||
| from typing import TYPE_CHECKING, TypeVar, Union | ||
|
|
||
| import numpy as np | ||
|
|
||
| if TYPE_CHECKING: | ||
| from .common import DataWithCoords | ||
| from .dataarray import DataArray | ||
| from .dataset import Dataset | ||
| from .groupby import DataArrayGroupBy, GroupBy | ||
| from .npcompat import ArrayLike | ||
| from .variable import Variable | ||
|
|
||
| try: | ||
| from dask.array import Array as DaskArray | ||
| except ImportError: | ||
| DaskArray = np.ndarray | ||
|
|
||
| T_Dataset = TypeVar("T_Dataset", bound="Dataset") | ||
| T_DataArray = TypeVar("T_DataArray", bound="DataArray") | ||
| T_Variable = TypeVar("T_Variable", bound="Variable") | ||
| # Maybe we rename this to T_Data or something less Fortran-y? | ||
| T_Xarray = TypeVar("T_Xarray", "DataArray", "Dataset") | ||
| T_DataWithCoords = TypeVar("T_DataWithCoords", bound="DataWithCoords") | ||
|
|
||
| ScalarOrArray = Union["ArrayLike", np.generic, np.ndarray, "DaskArray"] | ||
| DsCompatible = Union["Dataset", "DataArray", "Variable", "GroupBy", "ScalarOrArray"] | ||
| DaCompatible = Union["DataArray", "Variable", "DataArrayGroupBy", "ScalarOrArray"] | ||
| VarCompatible = Union["Variable", "ScalarOrArray"] | ||
| GroupByIncompatible = Union["Variable", "GroupBy"] |
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.
Uh oh!
There was an error while loading. Please reload this page.