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 : utils.pyi
import sys from ast import AST from typing import ( Any, Callable, List, Mapping, Optional, overload, Sequence, Tuple, TypeVar, Union, ) from numpy import ndarray, generic from numpy.core.numerictypes import ( issubclass_ as issubclass_, issubdtype as issubdtype, issubsctype as issubsctype, ) if sys.version_info >= (3, 8): from typing import Protocol else: from typing_extensions import Protocol _T_contra = TypeVar("_T_contra", contravariant=True) _FuncType = TypeVar("_FuncType", bound=Callable[..., Any]) # A file-like object opened in `w` mode class _SupportsWrite(Protocol[_T_contra]): def write(self, __s: _T_contra) -> Any: ... __all__: List[str] class _Deprecate: old_name: Optional[str] new_name: Optional[str] message: Optional[str] def __init__( self, old_name: Optional[str] = ..., new_name: Optional[str] = ..., message: Optional[str] = ..., ) -> None: ... # NOTE: `__call__` can in principle take arbitrary `*args` and `**kwargs`, # even though they aren't used for anything def __call__(self, func: _FuncType) -> _FuncType: ... def get_include() -> str: ... @overload def deprecate( *, old_name: Optional[str] = ..., new_name: Optional[str] = ..., message: Optional[str] = ..., ) -> _Deprecate: ... @overload def deprecate( __func: _FuncType, old_name: Optional[str] = ..., new_name: Optional[str] = ..., message: Optional[str] = ..., ) -> _FuncType: ... def deprecate_with_doc(msg: Optional[str]) -> _Deprecate: ... # NOTE: In practice `byte_bounds` can (potentially) take any object # implementing the `__array_interface__` protocol. The caveat is # that certain keys, marked as optional in the spec, must be present for # `byte_bounds`. This concerns `"strides"` and `"data"`. def byte_bounds(a: Union[generic, ndarray[Any, Any]]) -> Tuple[int, int]: ... def who(vardict: Optional[Mapping[str, ndarray[Any, Any]]] = ...) -> None: ... def info( object: object = ..., maxwidth: int = ..., output: Optional[_SupportsWrite[str]] = ..., toplevel: str = ..., ) -> None: ... def source( object: object, output: Optional[_SupportsWrite[str]] = ..., ) -> None: ... def lookfor( what: str, module: Union[None, str, Sequence[str]] = ..., import_modules: bool = ..., regenerate: bool = ..., output: Optional[_SupportsWrite[str]] =..., ) -> None: ... def safe_eval(source: Union[str, AST]) -> Any: ...
Close