OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
hps
/
faces
/
.venv
/
lib
/
python3.10
/
site-packages
/
numpy
/
lib
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/26/2024 01:26:35 PM
rwxr-xr-x
📄
__init__.py
2.2 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
__init__.pyi
5.48 KB
10/26/2024 01:26:29 PM
rw-r--r--
📁
__pycache__
-
10/26/2024 01:27:40 PM
rwxr-xr-x
📄
_datasource.py
22.11 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
_iotools.py
30.15 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
_version.py
4.74 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
_version.pyi
633 bytes
10/26/2024 01:26:29 PM
rw-r--r--
📄
arraypad.py
30.63 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
arraypad.pyi
1.69 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
arraysetops.py
32.87 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
arraysetops.pyi
8.14 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
arrayterator.py
6.9 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
arrayterator.pyi
1.5 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
format.py
33.41 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
format.pyi
748 bytes
10/26/2024 01:26:27 PM
rw-r--r--
📄
function_base.py
180.8 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
function_base.pyi
16.2 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
histograms.py
36.81 KB
10/26/2024 01:26:28 PM
rw-r--r--
📄
histograms.pyi
995 bytes
10/26/2024 01:26:28 PM
rw-r--r--
📄
index_tricks.py
30.22 KB
10/26/2024 01:26:28 PM
rw-r--r--
📄
index_tricks.pyi
4.14 KB
10/26/2024 01:26:28 PM
rw-r--r--
📄
mixins.py
6.89 KB
10/26/2024 01:26:28 PM
rw-r--r--
📄
mixins.pyi
3.04 KB
10/26/2024 01:26:28 PM
rw-r--r--
📄
nanfunctions.py
64.02 KB
10/26/2024 01:26:28 PM
rw-r--r--
📄
nanfunctions.pyi
606 bytes
10/26/2024 01:26:28 PM
rw-r--r--
📄
npyio.py
95.15 KB
10/26/2024 01:26:28 PM
rw-r--r--
📄
npyio.pyi
9.39 KB
10/26/2024 01:26:28 PM
rw-r--r--
📄
polynomial.py
43.11 KB
10/26/2024 01:26:28 PM
rw-r--r--
📄
polynomial.pyi
6.79 KB
10/26/2024 01:26:28 PM
rw-r--r--
📄
recfunctions.py
54.93 KB
10/26/2024 01:26:28 PM
rw-r--r--
📄
scimath.py
14.68 KB
10/26/2024 01:26:28 PM
rw-r--r--
📄
scimath.pyi
2.82 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
setup.py
405 bytes
10/26/2024 01:26:29 PM
rw-r--r--
📄
shape_base.py
38.35 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
shape_base.pyi
5.06 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
stride_tricks.py
17.49 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
stride_tricks.pyi
1.71 KB
10/26/2024 01:26:29 PM
rw-r--r--
📁
tests
-
10/26/2024 01:28:54 PM
rwxr-xr-x
📄
twodim_base.py
30.62 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
twodim_base.pyi
5.24 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
type_check.py
19.46 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
type_check.pyi
5.44 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
ufunclike.py
7.84 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
ufunclike.pyi
1.26 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
user_array.py
7.54 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
utils.py
35.3 KB
10/26/2024 01:26:29 PM
rw-r--r--
📄
utils.pyi
2.3 KB
10/26/2024 01:26:29 PM
rw-r--r--
Editing: arrayterator.pyi
Close
from collections.abc import Generator from typing import ( Any, TypeVar, Union, overload, ) from numpy import ndarray, dtype, generic from numpy._typing import DTypeLike # TODO: Set a shape bound once we've got proper shape support _Shape = TypeVar("_Shape", bound=Any) _DType = TypeVar("_DType", bound=dtype[Any]) _ScalarType = TypeVar("_ScalarType", bound=generic) _Index = Union[ Union[ellipsis, int, slice], tuple[Union[ellipsis, int, slice], ...], ] __all__: list[str] # NOTE: In reality `Arrayterator` does not actually inherit from `ndarray`, # but its ``__getattr__` method does wrap around the former and thus has # access to all its methods class Arrayterator(ndarray[_Shape, _DType]): var: ndarray[_Shape, _DType] # type: ignore[assignment] buf_size: None | int start: list[int] stop: list[int] step: list[int] @property # type: ignore[misc] def shape(self) -> tuple[int, ...]: ... @property def flat( # type: ignore[override] self: ndarray[Any, dtype[_ScalarType]] ) -> Generator[_ScalarType, None, None]: ... def __init__( self, var: ndarray[_Shape, _DType], buf_size: None | int = ... ) -> None: ... @overload def __array__(self, dtype: None = ...) -> ndarray[Any, _DType]: ... @overload def __array__(self, dtype: DTypeLike) -> ndarray[Any, dtype[Any]]: ... def __getitem__(self, index: _Index) -> Arrayterator[Any, _DType]: ... def __iter__(self) -> Generator[ndarray[Any, _DType], None, None]: ...