Skip to content
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
wants to merge 15 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
23 changes: 17 additions & 6 deletions array_api_compat/_internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Comment on lines +7 to +14
Copy link
Contributor

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.


_T = TypeVar("_T")


def get_xp(xp: "ModuleType") -> "Callable[[Callable[..., _T]], Callable[..., _T]]":
Copy link
Contributor

@crusaderky crusaderky Mar 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please use bare annotations.
Where it would break things, because you either have a circular dependency or a if TYPE_CHECKING block, please add from __future__ import annotations to the top of the module.

"""
Decorator to automatically replace xp with the corresponding array module.

Expand All @@ -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:
Expand All @@ -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
Loading
Loading