-
Notifications
You must be signed in to change notification settings - Fork 33
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
TYP: Type annotations overhaul, episode 2 #288
Draft
jorenham
wants to merge
15
commits into
data-apis:main
Choose a base branch
from
jorenham:typing-overhaul-episode-2
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.
Draft
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
d515f56
TYP: annotate `_internal.get_xp` (and curse at `ParamSpec` for being …
jorenham 816226d
TYP: fix (or ignore) typing errors in `common._helpers` (and curse at…
jorenham 113a866
TYP: fix typing errors in `common._fft`
jorenham c1f50cb
TYP: fix typing errors in `common._aliases`
jorenham fd32846
TYP: fix typing errors in `common._linalg`
jorenham 6e54ae0
TYP: fix/ignore typing errors in `numpy.__init__`
jorenham d8c5a33
TYP: fix typing errors in `numpy._typing`
jorenham d88c363
TYP: fix typing errors in `numpy._aliases`
jorenham ee092d6
TYP: fix typing errors in `numpy._info`
jorenham 6c5c350
TYP: fix typing errors in `numpy._fft`
jorenham b5aa2ae
TYP: it's a bad idea to import `TypeAlias` from `typing` on `python<3…
jorenham 0754b86
TYP: it's also a bad idea to import `TypeGuard` from `typing` on `pyt…
jorenham 76767c3
TYP: don't scare the prehistoric `dtype` from numpy 1.21
jorenham 1fea20b
TYP: dust off the DeLorean
jorenham 37b9c7b
TYP: figure out how to drive a DeLorean
jorenham 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 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 |
---|---|---|
|
@@ -4,8 +4,19 @@ | |
|
||
from functools import wraps | ||
from inspect import signature | ||
from typing import TYPE_CHECKING | ||
|
||
def get_xp(xp): | ||
__all__ = ["get_xp"] | ||
|
||
if TYPE_CHECKING: | ||
from collections.abc import Callable | ||
from types import ModuleType | ||
from typing import TypeVar | ||
|
||
_T = TypeVar("_T") | ||
|
||
|
||
def get_xp(xp: "ModuleType") -> "Callable[[Callable[..., _T]], Callable[..., _T]]": | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please use bare annotations. |
||
""" | ||
Decorator to automatically replace xp with the corresponding array module. | ||
|
||
|
@@ -22,14 +33,14 @@ def func(x, /, xp, kwarg=None): | |
|
||
""" | ||
|
||
def inner(f): | ||
def inner(f: "Callable[..., _T]", /) -> "Callable[..., _T]": | ||
@wraps(f) | ||
def wrapped_f(*args, **kwargs): | ||
def wrapped_f(*args: object, **kwargs: object) -> object: | ||
return f(*args, xp=xp, **kwargs) | ||
|
||
sig = signature(f) | ||
new_sig = sig.replace( | ||
parameters=[sig.parameters[i] for i in sig.parameters if i != "xp"] | ||
parameters=[par for i, par in sig.parameters.items() if i != "xp"] | ||
) | ||
|
||
if wrapped_f.__doc__ is None: | ||
|
@@ -40,7 +51,7 @@ def wrapped_f(*args, **kwargs): | |
specification for more details. | ||
|
||
""" | ||
wrapped_f.__signature__ = new_sig | ||
return wrapped_f | ||
wrapped_f.__signature__ = new_sig # pyright: ignore[reportAttributeAccessIssue] | ||
return wrapped_f # pyright: ignore[reportReturnType] | ||
|
||
return inner |
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.
I much prefer avoiding
if TYPE_CHECKING
blocks when possible, and use them only when necessary (circular imports and runtime support for obsolete versions of python).The performance implications of importing from typing at runtime are absolutely negligible.