You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
972 B
Python
33 lines
972 B
Python
from collections.abc import Callable
|
|
from typing import Any, Literal, TypeAlias, TypedDict, type_check_only
|
|
|
|
from _typeshed import SupportsWrite
|
|
|
|
from numpy import errstate as errstate
|
|
|
|
_ErrKind: TypeAlias = Literal["ignore", "warn", "raise", "call", "print", "log"]
|
|
_ErrFunc: TypeAlias = Callable[[str, int], Any]
|
|
_ErrCall: TypeAlias = _ErrFunc | SupportsWrite[str]
|
|
|
|
@type_check_only
|
|
class _ErrDict(TypedDict):
|
|
divide: _ErrKind
|
|
over: _ErrKind
|
|
under: _ErrKind
|
|
invalid: _ErrKind
|
|
|
|
def seterr(
|
|
all: _ErrKind | None = ...,
|
|
divide: _ErrKind | None = ...,
|
|
over: _ErrKind | None = ...,
|
|
under: _ErrKind | None = ...,
|
|
invalid: _ErrKind | None = ...,
|
|
) -> _ErrDict: ...
|
|
def geterr() -> _ErrDict: ...
|
|
def setbufsize(size: int) -> int: ...
|
|
def getbufsize() -> int: ...
|
|
def seterrcall(func: _ErrCall | None) -> _ErrCall | None: ...
|
|
def geterrcall() -> _ErrCall | None: ...
|
|
|
|
# See `numpy/__init__.pyi` for the `errstate` class and `no_nep5_warnings`
|