Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > > site-packages > numpy > _pyinstaller >
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 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 0 bytes | April 17 2025 13:10:58. | |
hook-numpy.py | File | 1409 bytes | April 17 2025 13:10:58. | |
pyinstaller-smoke.py | File | 1143 bytes | April 17 2025 13:10:58. | |
test_pyinstaller.py | File | 1135 bytes | April 17 2025 13:10:58. |
"""A crude *bit of everything* smoke test to verify PyInstaller compatibility. PyInstaller typically goes wrong by forgetting to package modules, extension modules or shared libraries. This script should aim to touch as many of those as possible in an attempt to trip a ModuleNotFoundError or a DLL load failure due to an uncollected resource. Missing resources are unlikely to lead to arithmetic errors so there's generally no need to verify any calculation's output - merely that it made it to the end OK. This script should not explicitly import any of numpy's submodules as that gives PyInstaller undue hints that those submodules exist and should be collected (accessing implicitly loaded submodules is OK). """ import numpy as np a = np.arange(1., 10.).reshape((3, 3)) % 5 np.linalg.det(a) a @ a a @ a.T np.linalg.inv(a) np.sin(np.exp(a)) np.linalg.svd(a) np.linalg.eigh(a) np.unique(np.random.randint(0, 10, 100)) np.sort(np.random.uniform(0, 10, 100)) np.fft.fft(np.exp(2j * np.pi * np.arange(8) / 8)) np.ma.masked_array(np.arange(10), np.random.rand(10) < .5).sum() np.polynomial.Legendre([7, 8, 9]).roots() print("I made it!")
SILENT KILLER Tool