You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
396 B
11 lines
396 B
from collections.abc import Callable, Hashable
|
|
from typing import Any
|
|
from typing_extensions import TypeIs
|
|
|
|
import numpy as np
|
|
|
|
def get_overridable_numpy_ufuncs() -> set[np.ufunc]: ...
|
|
def get_overridable_numpy_array_functions() -> set[Callable[..., Any]]: ...
|
|
def allows_array_ufunc_override(func: object) -> TypeIs[np.ufunc]: ...
|
|
def allows_array_function_override(func: Hashable) -> bool: ...
|