SILENT KILLERPanel

Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > > site-packages > numpy > typing > tests > data > > reveal


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/cloudlinux/venv/lib64/python3.11//site-packages/numpy/typing/tests/data//reveal

NameTypeSizeLast ModifiedActions
arithmetic.pyi File 20805 bytes April 17 2025 13:10:58.
array_constructors.pyi File 11831 bytes April 17 2025 13:10:58.
arraypad.pyi File 694 bytes April 17 2025 13:10:58.
arrayprint.pyi File 686 bytes April 17 2025 13:10:58.
arraysetops.pyi File 4671 bytes April 17 2025 13:10:58.
arrayterator.pyi File 1128 bytes April 17 2025 13:10:58.
bitwise_ops.pyi File 3607 bytes April 17 2025 13:10:58.
char.pyi File 8047 bytes April 17 2025 13:10:58.
chararray.pyi File 6312 bytes April 17 2025 13:10:58.
comparisons.pyi File 8018 bytes April 17 2025 13:10:58.
constants.pyi File 1940 bytes April 17 2025 13:10:58.
ctypeslib.pyi File 5107 bytes April 17 2025 13:10:58.
datasource.pyi File 557 bytes April 17 2025 13:10:58.
dtype.pyi File 2787 bytes April 17 2025 13:10:58.
einsumfunc.pyi File 2173 bytes April 17 2025 13:10:58.
emath.pyi File 2538 bytes April 17 2025 13:10:58.
false_positives.pyi File 349 bytes April 17 2025 13:10:58.
fft.pyi File 1852 bytes April 17 2025 13:10:58.
flatiter.pyi File 819 bytes April 17 2025 13:10:58.
fromnumeric.pyi File 13631 bytes April 17 2025 13:10:58.
getlimits.pyi File 1547 bytes April 17 2025 13:10:58.
histograms.pyi File 1391 bytes April 17 2025 13:10:58.
index_tricks.pyi File 3481 bytes April 17 2025 13:10:58.
lib_function_base.pyi File 9140 bytes April 17 2025 13:10:58.
lib_polynomial.pyi File 6353 bytes April 17 2025 13:10:58.
lib_utils.pyi File 917 bytes April 17 2025 13:10:58.
lib_version.pyi File 605 bytes April 17 2025 13:10:58.
linalg.pyi File 5217 bytes April 17 2025 13:10:58.
matrix.pyi File 3033 bytes April 17 2025 13:10:58.
memmap.pyi File 755 bytes April 17 2025 13:10:58.
mod.pyi File 5989 bytes April 17 2025 13:10:58.
modules.pyi File 1994 bytes April 17 2025 13:10:58.
multiarray.pyi File 5670 bytes April 17 2025 13:10:58.
nbit_base_example.pyi File 500 bytes April 17 2025 13:10:58.
ndarray_conversion.pyi File 1913 bytes April 17 2025 13:10:58.
ndarray_misc.pyi File 7797 bytes April 17 2025 13:10:58.
ndarray_shape_manipulation.pyi File 904 bytes April 17 2025 13:10:58.
nditer.pyi File 2067 bytes April 17 2025 13:10:58.
nested_sequence.pyi File 648 bytes April 17 2025 13:10:58.
npyio.pyi File 4434 bytes April 17 2025 13:10:58.
numeric.pyi File 6802 bytes April 17 2025 13:10:58.
numerictypes.pyi File 1711 bytes April 17 2025 13:10:58.
random.pyi File 129510 bytes April 17 2025 13:10:58.
rec.pyi File 3380 bytes April 17 2025 13:10:58.
scalars.pyi File 5347 bytes April 17 2025 13:10:58.
shape_base.pyi File 2632 bytes April 17 2025 13:10:58.
stride_tricks.pyi File 1563 bytes April 17 2025 13:10:58.
testing.pyi File 8877 bytes April 17 2025 13:10:58.
twodim_base.pyi File 3327 bytes April 17 2025 13:10:58.
type_check.pyi File 3031 bytes April 17 2025 13:10:58.
ufunc_config.pyi File 1304 bytes April 17 2025 13:10:58.
ufunclike.pyi File 1319 bytes April 17 2025 13:10:58.
ufuncs.pyi File 2919 bytes April 17 2025 13:10:58.
version.pyi File 313 bytes April 17 2025 13:10:58.
warnings_and_errors.pyi File 420 bytes April 17 2025 13:10:58.

Reading File: //opt/cloudlinux/venv/lib64/python3.11//site-packages/numpy/typing/tests/data//reveal/scalars.pyi

import numpy as np

b: np.bool_
u8: np.uint64
i8: np.int64
f8: np.float64
c8: np.complex64
c16: np.complex128
m: np.timedelta64
U: np.str_
S: np.bytes_
V: np.void

reveal_type(c8.real)  # E: {float32}
reveal_type(c8.imag)  # E: {float32}

reveal_type(c8.real.real)  # E: {float32}
reveal_type(c8.real.imag)  # E: {float32}

reveal_type(c8.itemsize)  # E: int
reveal_type(c8.shape)  # E: Tuple[]
reveal_type(c8.strides)  # E: Tuple[]

reveal_type(c8.ndim)  # E: Literal[0]
reveal_type(c8.size)  # E: Literal[1]

reveal_type(c8.squeeze())  # E: {complex64}
reveal_type(c8.byteswap())  # E: {complex64}
reveal_type(c8.transpose())  # E: {complex64}

reveal_type(c8.dtype)  # E: dtype[{complex64}]

reveal_type(c8.real)  # E: {float32}
reveal_type(c16.imag)  # E: {float64}

reveal_type(np.unicode_('foo'))  # E: str_

reveal_type(V[0])  # E: Any
reveal_type(V["field1"])  # E: Any
reveal_type(V[["field1", "field2"]])  # E: void
V[0] = 5

# Aliases
reveal_type(np.unicode_())  # E: str_
reveal_type(np.string_())  # E: bytes_

reveal_type(np.byte())  # E: {byte}
reveal_type(np.short())  # E: {short}
reveal_type(np.intc())  # E: {intc}
reveal_type(np.intp())  # E: {intp}
reveal_type(np.int_())  # E: {int_}
reveal_type(np.longlong())  # E: {longlong}

reveal_type(np.ubyte())  # E: {ubyte}
reveal_type(np.ushort())  # E: {ushort}
reveal_type(np.uintc())  # E: {uintc}
reveal_type(np.uintp())  # E: {uintp}
reveal_type(np.uint())  # E: {uint}
reveal_type(np.ulonglong())  # E: {ulonglong}

reveal_type(np.half())  # E: {half}
reveal_type(np.single())  # E: {single}
reveal_type(np.double())  # E: {double}
reveal_type(np.float_())  # E: {double}
reveal_type(np.longdouble())  # E: {longdouble}
reveal_type(np.longfloat())  # E: {longdouble}

reveal_type(np.csingle())  # E: {csingle}
reveal_type(np.singlecomplex())  # E: {csingle}
reveal_type(np.cdouble())  # E: {cdouble}
reveal_type(np.complex_())  # E: {cdouble}
reveal_type(np.cfloat())  # E: {cdouble}
reveal_type(np.clongdouble())  # E: {clongdouble}
reveal_type(np.clongfloat())  # E: {clongdouble}
reveal_type(np.longcomplex())  # E: {clongdouble}

reveal_type(b.item())  # E: bool
reveal_type(i8.item())  # E: int
reveal_type(u8.item())  # E: int
reveal_type(f8.item())  # E: float
reveal_type(c16.item())  # E: complex
reveal_type(U.item())  # E: str
reveal_type(S.item())  # E: bytes

reveal_type(b.tolist())  # E: bool
reveal_type(i8.tolist())  # E: int
reveal_type(u8.tolist())  # E: int
reveal_type(f8.tolist())  # E: float
reveal_type(c16.tolist())  # E: complex
reveal_type(U.tolist())  # E: str
reveal_type(S.tolist())  # E: bytes

reveal_type(b.ravel())  # E: ndarray[Any, dtype[bool_]]
reveal_type(i8.ravel())  # E: ndarray[Any, dtype[{int64}]]
reveal_type(u8.ravel())  # E: ndarray[Any, dtype[{uint64}]]
reveal_type(f8.ravel())  # E: ndarray[Any, dtype[{float64}]]
reveal_type(c16.ravel())  # E: ndarray[Any, dtype[{complex128}]]
reveal_type(U.ravel())  # E: ndarray[Any, dtype[str_]]
reveal_type(S.ravel())  # E: ndarray[Any, dtype[bytes_]]

reveal_type(b.flatten())  # E: ndarray[Any, dtype[bool_]]
reveal_type(i8.flatten())  # E: ndarray[Any, dtype[{int64}]]
reveal_type(u8.flatten())  # E: ndarray[Any, dtype[{uint64}]]
reveal_type(f8.flatten())  # E: ndarray[Any, dtype[{float64}]]
reveal_type(c16.flatten())  # E: ndarray[Any, dtype[{complex128}]]
reveal_type(U.flatten())  # E: ndarray[Any, dtype[str_]]
reveal_type(S.flatten())  # E: ndarray[Any, dtype[bytes_]]

reveal_type(b.reshape(1))  # E: ndarray[Any, dtype[bool_]]
reveal_type(i8.reshape(1))  # E: ndarray[Any, dtype[{int64}]]
reveal_type(u8.reshape(1))  # E: ndarray[Any, dtype[{uint64}]]
reveal_type(f8.reshape(1))  # E: ndarray[Any, dtype[{float64}]]
reveal_type(c16.reshape(1))  # E: ndarray[Any, dtype[{complex128}]]
reveal_type(U.reshape(1))  # E: ndarray[Any, dtype[str_]]
reveal_type(S.reshape(1))  # E: ndarray[Any, dtype[bytes_]]

reveal_type(i8.astype(float))  # E: Any
reveal_type(i8.astype(np.float64))  # E: {float64}

reveal_type(i8.view())  # E: {int64}
reveal_type(i8.view(np.float64))  # E: {float64}
reveal_type(i8.view(float))  # E: Any
reveal_type(i8.view(np.float64, np.ndarray))  # E: {float64}

reveal_type(i8.getfield(float))  # E: Any
reveal_type(i8.getfield(np.float64))  # E: {float64}
reveal_type(i8.getfield(np.float64, 8))  # E: {float64}

reveal_type(f8.as_integer_ratio())  # E: Tuple[builtins.int, builtins.int]
reveal_type(f8.is_integer())  # E: bool
reveal_type(f8.__trunc__())  # E: int
reveal_type(f8.__getformat__("float"))  # E: str
reveal_type(f8.hex())  # E: str
reveal_type(np.float64.fromhex("0x0.0p+0"))  # E: {float64}

reveal_type(f8.__getnewargs__())  # E: Tuple[builtins.float]
reveal_type(c16.__getnewargs__())  # E: Tuple[builtins.float, builtins.float]

reveal_type(i8.numerator)  # E: {int64}
reveal_type(i8.denominator)  # E: Literal[1]
reveal_type(u8.numerator)  # E: {uint64}
reveal_type(u8.denominator)  # E: Literal[1]
reveal_type(m.numerator)  # E: timedelta64
reveal_type(m.denominator)  # E: Literal[1]

reveal_type(round(i8))  # E: int
reveal_type(round(i8, 3))  # E: {int64}
reveal_type(round(u8))  # E: int
reveal_type(round(u8, 3))  # E: {uint64}
reveal_type(round(f8))  # E: int
reveal_type(round(f8, 3))  # E: {float64}

reveal_type(f8.__ceil__())  # E: int
reveal_type(f8.__floor__())  # E: int

reveal_type(i8.is_integer())  # E: Literal[True]

SILENT KILLER Tool