PATH:
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
numpy
/
core
import sys import types from collections.abc import Iterable from typing import ( Literal as L, Union, overload, Any, TypeVar, Protocol, TypedDict, ) from numpy import ( ndarray, dtype, generic, bool_, ubyte, ushort, uintc, uint, ulonglong, byte, short, intc, int_, longlong, half, single, double, longdouble, csingle, cdouble, clongdouble, datetime64, timedelta64, object_, str_, bytes_, void, ) from numpy.core._type_aliases import ( sctypeDict as sctypeDict, sctypes as sctypes, ) from numpy._typing import DTypeLike, ArrayLike, _DTypeLike _T = TypeVar("_T") _SCT = TypeVar("_SCT", bound=generic) class _CastFunc(Protocol): def __call__( self, x: ArrayLike, k: DTypeLike = ... ) -> ndarray[Any, dtype[Any]]: ... class _TypeCodes(TypedDict): Character: L['c'] Integer: L['bhilqp'] UnsignedInteger: L['BHILQP'] Float: L['efdg'] Complex: L['FDG'] AllInteger: L['bBhHiIlLqQpP'] AllFloat: L['efdgFDG'] Datetime: L['Mm'] All: L['?bhilqpBHILQPefdgFDGSUVOMm'] class _typedict(dict[type[generic], _T]): def __getitem__(self, key: DTypeLike) -> _T: ... if sys.version_info >= (3, 10): _TypeTuple = Union[ type[Any], types.UnionType, tuple[Union[type[Any], types.UnionType, tuple[Any, ...]], ...], ] else: _TypeTuple = Union[ type[Any], tuple[Union[type[Any], tuple[Any, ...]], ...], ] __all__: list[str] @overload def maximum_sctype(t: _DTypeLike[_SCT]) -> type[_SCT]: ... @overload def maximum_sctype(t: DTypeLike) -> type[Any]: ... @overload def issctype(rep: dtype[Any] | type[Any]) -> bool: ... @overload def issctype(rep: object) -> L[False]: ... @overload def obj2sctype(rep: _DTypeLike[_SCT], default: None = ...) -> None | type[_SCT]: ... @overload def obj2sctype(rep: _DTypeLike[_SCT], default: _T) -> _T | type[_SCT]: ... @overload def obj2sctype(rep: DTypeLike, default: None = ...) -> None | type[Any]: ... @overload def obj2sctype(rep: DTypeLike, default: _T) -> _T | type[Any]: ... @overload def obj2sctype(rep: object, default: None = ...) -> None: ... @overload def obj2sctype(rep: object, default: _T) -> _T: ... @overload def issubclass_(arg1: type[Any], arg2: _TypeTuple) -> bool: ... @overload def issubclass_(arg1: object, arg2: object) -> L[False]: ... def issubsctype(arg1: DTypeLike, arg2: DTypeLike) -> bool: ... def issubdtype(arg1: DTypeLike, arg2: DTypeLike) -> bool: ... def sctype2char(sctype: DTypeLike) -> str: ... cast: _typedict[_CastFunc] nbytes: _typedict[int] typecodes: _TypeCodes ScalarType: tuple[ type[int], type[float], type[complex], type[bool], type[bytes], type[str], type[memoryview], type[bool_], type[csingle], type[cdouble], type[clongdouble], type[half], type[single], type[double], type[longdouble], type[byte], type[short], type[intc], type[int_], type[longlong], type[timedelta64], type[datetime64], type[object_], type[bytes_], type[str_], type[ubyte], type[ushort], type[uintc], type[uint], type[ulonglong], type[void], ]
[-] _internal.py
[edit]
[-] _dtype.py
[edit]
[-] _add_newdocs_scalars.py
[edit]
[-] _ufunc_config.py
[edit]
[+]
include
[-] numerictypes.pyi
[edit]
[-] einsumfunc.pyi
[edit]
[-] _dtype_ctypes.py
[edit]
[-] _struct_ufunc_tests.cpython-311-x86_64-linux-gnu.so
[edit]
[-] memmap.pyi
[edit]
[-] _rational_tests.cpython-311-x86_64-linux-gnu.so
[edit]
[-] function_base.pyi
[edit]
[-] __init__.pyi
[edit]
[-] shape_base.pyi
[edit]
[-] setup_common.py
[edit]
[-] fromnumeric.pyi
[edit]
[-] _exceptions.py
[edit]
[-] _string_helpers.py
[edit]
[-] setup.py
[edit]
[-] numeric.py
[edit]
[+]
__pycache__
[+]
tests
[+]
lib
[-] _ufunc_config.pyi
[edit]
[-] records.pyi
[edit]
[-] defchararray.pyi
[edit]
[-] numeric.pyi
[edit]
[-] multiarray.pyi
[edit]
[-] _machar.py
[edit]
[-] defchararray.py
[edit]
[-] _umath_tests.cpython-311-x86_64-linux-gnu.so
[edit]
[-] _simd.cpython-311-x86_64-linux-gnu.so
[edit]
[-] _multiarray_tests.cpython-311-x86_64-linux-gnu.so
[edit]
[-] records.py
[edit]
[-] _methods.py
[edit]
[-] umath_tests.py
[edit]
[-] _operand_flag_tests.cpython-311-x86_64-linux-gnu.so
[edit]
[-] _internal.pyi
[edit]
[-] memmap.py
[edit]
[-] _asarray.py
[edit]
[-] arrayprint.py
[edit]
[-] generate_numpy_api.py
[edit]
[-] _type_aliases.py
[edit]
[-] getlimits.py
[edit]
[-] getlimits.pyi
[edit]
[-] einsumfunc.py
[edit]
[-] shape_base.py
[edit]
[-] function_base.py
[edit]
[-] _type_aliases.pyi
[edit]
[-] __init__.py
[edit]
[-] cversions.py
[edit]
[-] fromnumeric.py
[edit]
[+]
..
[-] umath.py
[edit]
[-] _asarray.pyi
[edit]
[-] arrayprint.pyi
[edit]
[-] overrides.py
[edit]
[-] _add_newdocs.py
[edit]
[-] _multiarray_umath.cpython-311-x86_64-linux-gnu.so
[edit]
[-] numerictypes.py
[edit]
[-] multiarray.py
[edit]