| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Python312/Lib/site-packages/numpy/typing/tests/data/reveal/ |
Upload File : |
"""Typing tests for `_core._ufunc_config`."""
from _typeshed import SupportsWrite
from typing import Any
from collections.abc import Callable
import numpy as np
from typing_extensions import assert_type
def func(a: str, b: int) -> None: ...
class Write:
def write(self, value: str) -> None: ...
assert_type(np.seterr(all=None), np._core._ufunc_config._ErrDict)
assert_type(np.seterr(divide="ignore"), np._core._ufunc_config._ErrDict)
assert_type(np.seterr(over="warn"), np._core._ufunc_config._ErrDict)
assert_type(np.seterr(under="call"), np._core._ufunc_config._ErrDict)
assert_type(np.seterr(invalid="raise"), np._core._ufunc_config._ErrDict)
assert_type(np.geterr(), np._core._ufunc_config._ErrDict)
assert_type(np.setbufsize(4096), int)
assert_type(np.getbufsize(), int)
assert_type(np.seterrcall(func), Callable[[str, int], Any] | None | SupportsWrite[str])
assert_type(np.seterrcall(Write()), Callable[[str, int], Any] | None | SupportsWrite[str])
assert_type(np.geterrcall(), Callable[[str, int], Any] | None | SupportsWrite[str])
assert_type(np.errstate(call=func, all="call"), np.errstate)
assert_type(np.errstate(call=Write(), divide="log", over="log"), np.errstate)