$93 GRAYBYTE WORDPRESS FILE MANAGER $58

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/core/

HOME
Current File : /opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/core//records.pyi
import os
from collections.abc import Sequence, Iterable
from typing import (
    Any,
    TypeVar,
    overload,
    Protocol,
)

from numpy import (
    format_parser as format_parser,
    record as record,
    recarray as recarray,
    dtype,
    generic,
    void,
    _ByteOrder,
    _SupportsBuffer,
)

from numpy._typing import (
    ArrayLike,
    DTypeLike,
    NDArray,
    _ShapeLike,
    _ArrayLikeVoid_co,
    _NestedSequence,
)

_SCT = TypeVar("_SCT", bound=generic)

_RecArray = recarray[Any, dtype[_SCT]]

class _SupportsReadInto(Protocol):
    def seek(self, offset: int, whence: int, /) -> object: ...
    def tell(self, /) -> int: ...
    def readinto(self, buffer: memoryview, /) -> int: ...

__all__: list[str]

@overload
def fromarrays(
    arrayList: Iterable[ArrayLike],
    dtype: DTypeLike = ...,
    shape: None | _ShapeLike = ...,
    formats: None = ...,
    names: None = ...,
    titles: None = ...,
    aligned: bool = ...,
    byteorder: None = ...,
) -> _RecArray[Any]: ...
@overload
def fromarrays(
    arrayList: Iterable[ArrayLike],
    dtype: None = ...,
    shape: None | _ShapeLike = ...,
    *,
    formats: DTypeLike,
    names: None | str | Sequence[str] = ...,
    titles: None | str | Sequence[str] = ...,
    aligned: bool = ...,
    byteorder: None | _ByteOrder = ...,
) -> _RecArray[record]: ...

@overload
def fromrecords(
    recList: _ArrayLikeVoid_co | tuple[Any, ...] | _NestedSequence[tuple[Any, ...]],
    dtype: DTypeLike = ...,
    shape: None | _ShapeLike = ...,
    formats: None = ...,
    names: None = ...,
    titles: None = ...,
    aligned: bool = ...,
    byteorder: None = ...,
) -> _RecArray[record]: ...
@overload
def fromrecords(
    recList: _ArrayLikeVoid_co | tuple[Any, ...] | _NestedSequence[tuple[Any, ...]],
    dtype: None = ...,
    shape: None | _ShapeLike = ...,
    *,
    formats: DTypeLike,
    names: None | str | Sequence[str] = ...,
    titles: None | str | Sequence[str] = ...,
    aligned: bool = ...,
    byteorder: None | _ByteOrder = ...,
) -> _RecArray[record]: ...

@overload
def fromstring(
    datastring: _SupportsBuffer,
    dtype: DTypeLike,
    shape: None | _ShapeLike = ...,
    offset: int = ...,
    formats: None = ...,
    names: None = ...,
    titles: None = ...,
    aligned: bool = ...,
    byteorder: None = ...,
) -> _RecArray[record]: ...
@overload
def fromstring(
    datastring: _SupportsBuffer,
    dtype: None = ...,
    shape: None | _ShapeLike = ...,
    offset: int = ...,
    *,
    formats: DTypeLike,
    names: None | str | Sequence[str] = ...,
    titles: None | str | Sequence[str] = ...,
    aligned: bool = ...,
    byteorder: None | _ByteOrder = ...,
) -> _RecArray[record]: ...

@overload
def fromfile(
    fd: str | bytes | os.PathLike[str] | os.PathLike[bytes] | _SupportsReadInto,
    dtype: DTypeLike,
    shape: None | _ShapeLike = ...,
    offset: int = ...,
    formats: None = ...,
    names: None = ...,
    titles: None = ...,
    aligned: bool = ...,
    byteorder: None = ...,
) -> _RecArray[Any]: ...
@overload
def fromfile(
    fd: str | bytes | os.PathLike[str] | os.PathLike[bytes] | _SupportsReadInto,
    dtype: None = ...,
    shape: None | _ShapeLike = ...,
    offset: int = ...,
    *,
    formats: DTypeLike,
    names: None | str | Sequence[str] = ...,
    titles: None | str | Sequence[str] = ...,
    aligned: bool = ...,
    byteorder: None | _ByteOrder = ...,
) -> _RecArray[record]: ...

@overload
def array(
    obj: _SCT | NDArray[_SCT],
    dtype: None = ...,
    shape: None | _ShapeLike = ...,
    offset: int = ...,
    formats: None = ...,
    names: None = ...,
    titles: None = ...,
    aligned: bool = ...,
    byteorder: None = ...,
    copy: bool = ...,
) -> _RecArray[_SCT]: ...
@overload
def array(
    obj: ArrayLike,
    dtype: DTypeLike,
    shape: None | _ShapeLike = ...,
    offset: int = ...,
    formats: None = ...,
    names: None = ...,
    titles: None = ...,
    aligned: bool = ...,
    byteorder: None = ...,
    copy: bool = ...,
) -> _RecArray[Any]: ...
@overload
def array(
    obj: ArrayLike,
    dtype: None = ...,
    shape: None | _ShapeLike = ...,
    offset: int = ...,
    *,
    formats: DTypeLike,
    names: None | str | Sequence[str] = ...,
    titles: None | str | Sequence[str] = ...,
    aligned: bool = ...,
    byteorder: None | _ByteOrder = ...,
    copy: bool = ...,
) -> _RecArray[record]: ...
@overload
def array(
    obj: None,
    dtype: DTypeLike,
    shape: _ShapeLike,
    offset: int = ...,
    formats: None = ...,
    names: None = ...,
    titles: None = ...,
    aligned: bool = ...,
    byteorder: None = ...,
    copy: bool = ...,
) -> _RecArray[Any]: ...
@overload
def array(
    obj: None,
    dtype: None = ...,
    *,
    shape: _ShapeLike,
    offset: int = ...,
    formats: DTypeLike,
    names: None | str | Sequence[str] = ...,
    titles: None | str | Sequence[str] = ...,
    aligned: bool = ...,
    byteorder: None | _ByteOrder = ...,
    copy: bool = ...,
) -> _RecArray[record]: ...
@overload
def array(
    obj: _SupportsReadInto,
    dtype: DTypeLike,
    shape: None | _ShapeLike = ...,
    offset: int = ...,
    formats: None = ...,
    names: None = ...,
    titles: None = ...,
    aligned: bool = ...,
    byteorder: None = ...,
    copy: bool = ...,
) -> _RecArray[Any]: ...
@overload
def array(
    obj: _SupportsReadInto,
    dtype: None = ...,
    shape: None | _ShapeLike = ...,
    offset: int = ...,
    *,
    formats: DTypeLike,
    names: None | str | Sequence[str] = ...,
    titles: None | str | Sequence[str] = ...,
    aligned: bool = ...,
    byteorder: None | _ByteOrder = ...,
    copy: bool = ...,
) -> _RecArray[record]: ...

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
14 Aug 2025 9.24 PM
root / root
0755
__pycache__
--
14 Aug 2025 9.25 PM
root / root
0755
include
--
17 Apr 2025 8.10 PM
root / root
0755
lib
--
14 Aug 2025 9.24 PM
root / root
0755
tests
--
14 Aug 2025 9.24 PM
root / root
0755
__init__.py
5.644 KB
17 Apr 2025 8.10 PM
root / root
0644
__init__.pyi
0.123 KB
17 Apr 2025 8.10 PM
root / root
0644
_add_newdocs.py
204.074 KB
17 Apr 2025 8.10 PM
root / root
0644
_add_newdocs_scalars.py
11.822 KB
17 Apr 2025 8.10 PM
root / root
0644
_asarray.py
3.793 KB
17 Apr 2025 8.10 PM
root / root
0644
_asarray.pyi
1.061 KB
17 Apr 2025 8.10 PM
root / root
0644
_dtype.py
10.357 KB
17 Apr 2025 8.10 PM
root / root
0644
_dtype_ctypes.py
3.587 KB
17 Apr 2025 8.10 PM
root / root
0644
_exceptions.py
5.253 KB
17 Apr 2025 8.10 PM
root / root
0644
_internal.py
27.684 KB
17 Apr 2025 8.10 PM
root / root
0644
_internal.pyi
1.008 KB
17 Apr 2025 8.10 PM
root / root
0644
_machar.py
11.294 KB
17 Apr 2025 8.10 PM
root / root
0644
_methods.py
8.411 KB
17 Apr 2025 8.10 PM
root / root
0644
_multiarray_tests.cpython-311-x86_64-linux-gnu.so
171.398 KB
17 Apr 2025 8.11 PM
root / root
0755
_multiarray_umath.cpython-311-x86_64-linux-gnu.so
6.64 MB
17 Apr 2025 8.11 PM
root / root
0755
_operand_flag_tests.cpython-311-x86_64-linux-gnu.so
16.547 KB
17 Apr 2025 8.11 PM
root / root
0755
_rational_tests.cpython-311-x86_64-linux-gnu.so
58.289 KB
17 Apr 2025 8.11 PM
root / root
0755
_simd.cpython-311-x86_64-linux-gnu.so
2.47 MB
17 Apr 2025 8.11 PM
root / root
0755
_string_helpers.py
2.785 KB
17 Apr 2025 8.10 PM
root / root
0644
_struct_ufunc_tests.cpython-311-x86_64-linux-gnu.so
16.648 KB
17 Apr 2025 8.11 PM
root / root
0755
_type_aliases.py
7.357 KB
17 Apr 2025 8.10 PM
root / root
0644
_type_aliases.pyi
0.395 KB
17 Apr 2025 8.10 PM
root / root
0644
_ufunc_config.py
13.617 KB
17 Apr 2025 8.10 PM
root / root
0644
_ufunc_config.pyi
1.041 KB
17 Apr 2025 8.10 PM
root / root
0644
_umath_tests.cpython-311-x86_64-linux-gnu.so
41.008 KB
17 Apr 2025 8.11 PM
root / root
0755
arrayprint.py
62.117 KB
17 Apr 2025 8.10 PM
root / root
0644
arrayprint.pyi
4.324 KB
17 Apr 2025 8.10 PM
root / root
0644
cversions.py
0.339 KB
17 Apr 2025 8.10 PM
root / root
0644
defchararray.py
71.892 KB
17 Apr 2025 8.10 PM
root / root
0644
defchararray.pyi
9 KB
17 Apr 2025 8.10 PM
root / root
0644
einsumfunc.py
50.652 KB
17 Apr 2025 8.10 PM
root / root
0644
einsumfunc.pyi
4.746 KB
17 Apr 2025 8.10 PM
root / root
0644
fromnumeric.py
125.802 KB
17 Apr 2025 8.10 PM
root / root
0644
fromnumeric.pyi
22.959 KB
17 Apr 2025 8.10 PM
root / root
0644
function_base.py
19.371 KB
17 Apr 2025 8.10 PM
root / root
0644
function_base.pyi
4.614 KB
17 Apr 2025 8.10 PM
root / root
0644
generate_numpy_api.py
7.475 KB
17 Apr 2025 8.10 PM
root / root
0644
getlimits.py
25.259 KB
17 Apr 2025 8.10 PM
root / root
0644
getlimits.pyi
0.08 KB
17 Apr 2025 8.10 PM
root / root
0644
memmap.py
11.495 KB
17 Apr 2025 8.10 PM
root / root
0644
memmap.pyi
0.054 KB
17 Apr 2025 8.10 PM
root / root
0644
multiarray.py
54.782 KB
17 Apr 2025 8.10 PM
root / root
0644
multiarray.pyi
24.188 KB
17 Apr 2025 8.10 PM
root / root
0644
numeric.py
75.209 KB
17 Apr 2025 8.10 PM
root / root
0644
numeric.pyi
13.896 KB
17 Apr 2025 8.10 PM
root / root
0644
numerictypes.py
17.674 KB
17 Apr 2025 8.10 PM
root / root
0644
numerictypes.pyi
3.19 KB
17 Apr 2025 8.10 PM
root / root
0644
overrides.py
6.927 KB
17 Apr 2025 8.10 PM
root / root
0644
records.py
36.653 KB
17 Apr 2025 8.10 PM
root / root
0644
records.pyi
5.559 KB
17 Apr 2025 8.10 PM
root / root
0644
setup.py
47.053 KB
17 Apr 2025 8.10 PM
root / root
0644
setup_common.py
16.685 KB
17 Apr 2025 8.10 PM
root / root
0644
shape_base.py
29.046 KB
17 Apr 2025 8.10 PM
root / root
0644
shape_base.pyi
2.709 KB
17 Apr 2025 8.10 PM
root / root
0644
umath.py
1.992 KB
17 Apr 2025 8.10 PM
root / root
0644
umath_tests.py
0.38 KB
17 Apr 2025 8.10 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF