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 /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
include
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
__init__.py
5.24
KB
-rw-r--r--
__init__.pyi
126
B
-rw-r--r--
_add_newdocs.py
187.41
KB
-rw-r--r--
_add_newdocs_scalars.py
8.59
KB
-rw-r--r--
_asarray.py
4.08
KB
-rw-r--r--
_asarray.pyi
1.89
KB
-rw-r--r--
_dtype.py
9.61
KB
-rw-r--r--
_dtype_ctypes.py
3.59
KB
-rw-r--r--
_exceptions.py
5.99
KB
-rw-r--r--
_internal.py
26.73
KB
-rw-r--r--
_internal.pyi
1.34
KB
-rw-r--r--
_methods.py
10.54
KB
-rw-r--r--
_multiarray_tests.cpython-310-...
122.6
KB
-rw-r--r--
_multiarray_umath.cpython-310-...
3.63
MB
-rw-r--r--
_operand_flag_tests.cpython-31...
14.2
KB
-rw-r--r--
_rational_tests.cpython-310-x8...
43.46
KB
-rw-r--r--
_simd.cpython-310-x86_64-linux...
1.91
MB
-rw-r--r--
_string_helpers.py
2.79
KB
-rw-r--r--
_struct_ufunc_tests.cpython-31...
14.38
KB
-rw-r--r--
_type_aliases.py
7.1
KB
-rw-r--r--
_type_aliases.pyi
520
B
-rw-r--r--
_ufunc_config.py
13.07
KB
-rw-r--r--
_ufunc_config.pyi
1.22
KB
-rw-r--r--
_umath_tests.cpython-310-x86_6...
34.8
KB
-rw-r--r--
arrayprint.py
60.18
KB
-rw-r--r--
arrayprint.pyi
4.56
KB
-rw-r--r--
cversions.py
347
B
-rw-r--r--
defchararray.py
68.1
KB
-rw-r--r--
einsumfunc.py
50.24
KB
-rw-r--r--
einsumfunc.pyi
3.62
KB
-rw-r--r--
fromnumeric.py
119.9
KB
-rw-r--r--
fromnumeric.pyi
7.83
KB
-rw-r--r--
function_base.py
18.57
KB
-rw-r--r--
function_base.pyi
1.44
KB
-rw-r--r--
generate_numpy_api.py
6.94
KB
-rw-r--r--
getlimits.py
19.31
KB
-rw-r--r--
machar.py
10.56
KB
-rw-r--r--
memmap.py
11.41
KB
-rw-r--r--
multiarray.py
54.01
KB
-rw-r--r--
numeric.py
74.93
KB
-rw-r--r--
numeric.pyi
4.76
KB
-rw-r--r--
numerictypes.py
16.91
KB
-rw-r--r--
numerictypes.pyi
2.85
KB
-rw-r--r--
overrides.py
7.94
KB
-rw-r--r--
records.py
36.58
KB
-rw-r--r--
setup.py
44.62
KB
-rw-r--r--
setup_common.py
19.31
KB
-rw-r--r--
shape_base.py
28.32
KB
-rw-r--r--
shape_base.pyi
1.04
KB
-rw-r--r--
umath.py
1.99
KB
-rw-r--r--
umath_tests.py
389
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : numerictypes.pyi
import sys from typing import ( TypeVar, Optional, Type, Union, Tuple, Sequence, overload, Any, TypeVar, Dict, List, ) 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 if sys.version_info >= (3, 8): from typing import Literal, Protocol, TypedDict else: from typing_extensions import Literal, Protocol, TypedDict _T = TypeVar("_T") _ScalarType = TypeVar("_ScalarType", bound=generic) class _CastFunc(Protocol): def __call__( self, x: ArrayLike, k: DTypeLike = ... ) -> ndarray[Any, dtype[Any]]: ... class _TypeCodes(TypedDict): Character: Literal['c'] Integer: Literal['bhilqp'] UnsignedInteger: Literal['BHILQP'] Float: Literal['efdg'] Complex: Literal['FDG'] AllInteger: Literal['bBhHiIlLqQpP'] AllFloat: Literal['efdgFDG'] Datetime: Literal['Mm'] All: Literal['?bhilqpBHILQPefdgFDGSUVOMm'] class _typedict(Dict[Type[generic], _T]): def __getitem__(self, key: DTypeLike) -> _T: ... __all__: List[str] # TODO: Clean up the annotations for the 7 functions below def maximum_sctype(t: DTypeLike) -> dtype: ... def issctype(rep: object) -> bool: ... @overload def obj2sctype(rep: object) -> Optional[generic]: ... @overload def obj2sctype(rep: object, default: None) -> Optional[generic]: ... @overload def obj2sctype( rep: object, default: Type[_T] ) -> Union[generic, Type[_T]]: ... def issubclass_(arg1: object, arg2: Union[object, Tuple[object, ...]]) -> bool: ... def issubsctype( arg1: Union[ndarray, DTypeLike], arg2: Union[ndarray, DTypeLike] ) -> bool: ... def issubdtype(arg1: DTypeLike, arg2: DTypeLike) -> bool: ... def sctype2char(sctype: object) -> str: ... def find_common_type( array_types: Sequence[DTypeLike], scalar_types: Sequence[DTypeLike] ) -> dtype: ... cast: _typedict[_CastFunc] nbytes: _typedict[int] typecodes: _TypeCodes ScalarType: Tuple[ Type[int], Type[float], Type[complex], Type[int], 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], ]
Close