OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
hps
/
faces
/
faces
/
lib
/
python3.10
/
site-packages
/
numpy
/
lib
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/26/2024 01:27:22 PM
rwxr-xr-x
📄
__init__.py
2.2 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
__init__.pyi
5.48 KB
10/26/2024 01:27:17 PM
rw-r--r--
📁
__pycache__
-
10/26/2024 01:28:20 PM
rwxr-xr-x
📄
_datasource.py
22.11 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
_iotools.py
30.15 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
_version.py
4.74 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
_version.pyi
633 bytes
10/26/2024 01:27:17 PM
rw-r--r--
📄
arraypad.py
30.63 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
arraypad.pyi
1.69 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
arraysetops.py
32.87 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
arraysetops.pyi
8.14 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
arrayterator.py
6.9 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
arrayterator.pyi
1.5 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
format.py
33.41 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
format.pyi
748 bytes
10/26/2024 01:27:16 PM
rw-r--r--
📄
function_base.py
180.8 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
function_base.pyi
16.2 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
histograms.py
36.81 KB
10/26/2024 01:27:16 PM
rw-r--r--
📄
histograms.pyi
995 bytes
10/26/2024 01:27:16 PM
rw-r--r--
📄
index_tricks.py
30.22 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
index_tricks.pyi
4.14 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
mixins.py
6.89 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
mixins.pyi
3.04 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
nanfunctions.py
64.02 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
nanfunctions.pyi
606 bytes
10/26/2024 01:27:17 PM
rw-r--r--
📄
npyio.py
95.15 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
npyio.pyi
9.39 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
polynomial.py
43.11 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
polynomial.pyi
6.79 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
recfunctions.py
54.93 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
scimath.py
14.68 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
scimath.pyi
2.82 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
setup.py
405 bytes
10/26/2024 01:27:17 PM
rw-r--r--
📄
shape_base.py
38.35 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
shape_base.pyi
5.06 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
stride_tricks.py
17.49 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
stride_tricks.pyi
1.71 KB
10/26/2024 01:27:17 PM
rw-r--r--
📁
tests
-
10/26/2024 01:29:28 PM
rwxr-xr-x
📄
twodim_base.py
30.62 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
twodim_base.pyi
5.24 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
type_check.py
19.46 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
type_check.pyi
5.44 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
ufunclike.py
7.84 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
ufunclike.pyi
1.26 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
user_array.py
7.54 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
utils.py
35.3 KB
10/26/2024 01:27:17 PM
rw-r--r--
📄
utils.pyi
2.3 KB
10/26/2024 01:27:17 PM
rw-r--r--
Editing: utils.pyi
Close
from ast import AST from collections.abc import Callable, Mapping, Sequence from typing import ( Any, overload, TypeVar, Protocol, ) from numpy import ndarray, generic from numpy.core.numerictypes import ( issubclass_ as issubclass_, issubdtype as issubdtype, issubsctype as issubsctype, ) _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: None | str new_name: None | str message: None | str def __init__( self, old_name: None | str = ..., new_name: None | str = ..., message: None | 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: None | str = ..., new_name: None | str = ..., message: None | str = ..., ) -> _Deprecate: ... @overload def deprecate( func: _FuncType, /, old_name: None | str = ..., new_name: None | str = ..., message: None | str = ..., ) -> _FuncType: ... def deprecate_with_doc(msg: None | 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: generic | ndarray[Any, Any]) -> tuple[int, int]: ... def who(vardict: None | Mapping[str, ndarray[Any, Any]] = ...) -> None: ... def info( object: object = ..., maxwidth: int = ..., output: None | _SupportsWrite[str] = ..., toplevel: str = ..., ) -> None: ... def source( object: object, output: None | _SupportsWrite[str] = ..., ) -> None: ... def lookfor( what: str, module: None | str | Sequence[str] = ..., import_modules: bool = ..., regenerate: bool = ..., output: None | _SupportsWrite[str] =..., ) -> None: ... def safe_eval(source: str | AST) -> Any: ... def show_runtime() -> None: ...