Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
python3.11 /
dist-packages /
numpy /
ma /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
tests
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
API_CHANGES.txt
3.33
KB
-rw-r--r--
2025-04-08 17:01
LICENSE
1.56
KB
-rw-r--r--
2025-04-08 17:01
README.rst
9.64
KB
-rw-r--r--
2025-04-08 17:01
__init__.py
1.39
KB
-rw-r--r--
2025-04-08 17:01
__init__.pyi
5.9
KB
-rw-r--r--
2025-04-08 17:01
core.py
280.92
KB
-rw-r--r--
2025-04-08 17:01
core.pyi
13.97
KB
-rw-r--r--
2025-04-08 17:01
extras.py
69.36
KB
-rw-r--r--
2025-04-08 17:01
extras.pyi
2.59
KB
-rw-r--r--
2025-04-08 17:01
mrecords.py
26.56
KB
-rw-r--r--
2025-04-08 17:01
mrecords.pyi
1.84
KB
-rw-r--r--
2025-04-08 17:01
testutils.py
10.03
KB
-rw-r--r--
2025-04-08 17:01
timer_comparison.py
15.33
KB
-rw-r--r--
2025-04-08 17:01
Save
Rename
from typing import Any, TypeVar from numpy import dtype from numpy.ma import MaskedArray __all__: list[str] _ShapeType_co = TypeVar("_ShapeType_co", covariant=True, bound=tuple[int, ...]) _DType_co = TypeVar("_DType_co", bound=dtype[Any], covariant=True) class MaskedRecords(MaskedArray[_ShapeType_co, _DType_co]): def __new__( cls, shape, dtype=..., buf=..., offset=..., strides=..., formats=..., names=..., titles=..., byteorder=..., aligned=..., mask=..., hard_mask=..., fill_value=..., keep_mask=..., copy=..., **options, ): ... _mask: Any _fill_value: Any @property def _data(self): ... @property def _fieldmask(self): ... def __array_finalize__(self, obj): ... def __len__(self): ... def __getattribute__(self, attr): ... def __setattr__(self, attr, val): ... def __getitem__(self, indx): ... def __setitem__(self, indx, value): ... def view(self, dtype=..., type=...): ... def harden_mask(self): ... def soften_mask(self): ... def copy(self): ... def tolist(self, fill_value=...): ... def __reduce__(self): ... mrecarray = MaskedRecords def fromarrays( arraylist, dtype=..., shape=..., formats=..., names=..., titles=..., aligned=..., byteorder=..., fill_value=..., ): ... def fromrecords( reclist, dtype=..., shape=..., formats=..., names=..., titles=..., aligned=..., byteorder=..., fill_value=..., mask=..., ): ... def fromtextfile( fname, delimiter=..., commentchar=..., missingchar=..., varnames=..., vartypes=..., # NOTE: deprecated: NumPy 1.22.0, 2021-09-23 # delimitor=..., ): ... def addfield(mrecord, newfield, newfieldname=...): ...