Current Path: > > opt > cloudlinux > venv > lib > python3.11 > site-packages > numpy > distutils
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 | - | - | |
checks | Directory | - | - | |
command | Directory | - | - | |
fcompiler | Directory | - | - | |
mingw | Directory | - | - | |
tests | Directory | - | - | |
__config__.py | File | 5143 bytes | April 17 2025 13:10:58. | |
__init__.py | File | 2074 bytes | April 17 2025 13:10:58. | |
__init__.pyi | File | 119 bytes | April 17 2025 13:10:58. | |
_shell_utils.py | File | 2613 bytes | April 17 2025 13:10:58. | |
armccompiler.py | File | 962 bytes | April 17 2025 13:10:58. | |
ccompiler.py | File | 28618 bytes | April 17 2025 13:10:58. | |
ccompiler_opt.py | File | 100335 bytes | April 17 2025 13:10:58. | |
conv_template.py | File | 9536 bytes | April 17 2025 13:10:58. | |
core.py | File | 8173 bytes | April 17 2025 13:10:58. | |
cpuinfo.py | File | 22639 bytes | April 17 2025 13:10:58. | |
exec_command.py | File | 10283 bytes | April 17 2025 13:10:58. | |
extension.py | File | 3568 bytes | April 17 2025 13:10:58. | |
from_template.py | File | 7913 bytes | April 17 2025 13:10:58. | |
fujitsuccompiler.py | File | 834 bytes | April 17 2025 13:10:58. | |
intelccompiler.py | File | 4234 bytes | April 17 2025 13:10:58. | |
lib2def.py | File | 3630 bytes | April 17 2025 13:10:58. | |
line_endings.py | File | 2032 bytes | April 17 2025 13:10:58. | |
log.py | File | 2879 bytes | April 17 2025 13:10:58. | |
mingw32ccompiler.py | File | 22067 bytes | April 17 2025 13:10:58. | |
misc_util.py | File | 89359 bytes | April 17 2025 13:10:58. | |
msvc9compiler.py | File | 2192 bytes | April 17 2025 13:10:58. | |
msvccompiler.py | File | 2647 bytes | April 17 2025 13:10:58. | |
npy_pkg_config.py | File | 12972 bytes | April 17 2025 13:10:58. | |
numpy_distribution.py | File | 634 bytes | April 17 2025 13:10:58. | |
pathccompiler.py | File | 713 bytes | April 17 2025 13:10:58. | |
setup.py | File | 634 bytes | April 17 2025 13:10:58. | |
system_info.py | File | 113184 bytes | April 17 2025 13:10:58. | |
unixccompiler.py | File | 5426 bytes | April 17 2025 13:10:58. |
""" An enhanced distutils, providing support for Fortran compilers, for BLAS, LAPACK and other common libraries for numerical computing, and more. Public submodules are:: misc_util system_info cpu_info log exec_command For details, please see the *Packaging* and *NumPy Distutils User Guide* sections of the NumPy Reference Guide. For configuring the preference for and location of libraries like BLAS and LAPACK, and for setting include paths and similar build options, please see ``site.cfg.example`` in the root of the NumPy repository or sdist. """ import warnings # Must import local ccompiler ASAP in order to get # customized CCompiler.spawn effective. from . import ccompiler from . import unixccompiler from .npy_pkg_config import * warnings.warn("\n\n" " `numpy.distutils` is deprecated since NumPy 1.23.0, as a result\n" " of the deprecation of `distutils` itself. It will be removed for\n" " Python >= 3.12. For older Python versions it will remain present.\n" " It is recommended to use `setuptools < 60.0` for those Python versions.\n" " For more details, see:\n" " https://numpy.org/devdocs/reference/distutils_status_migration.html \n\n", DeprecationWarning, stacklevel=2 ) del warnings # If numpy is installed, add distutils.test() try: from . import __config__ # Normally numpy is installed if the above import works, but an interrupted # in-place build could also have left a __config__.py. In that case the # next import may still fail, so keep it inside the try block. from numpy._pytesttester import PytestTester test = PytestTester(__name__) del PytestTester except ImportError: pass def customized_fcompiler(plat=None, compiler=None): from numpy.distutils.fcompiler import new_fcompiler c = new_fcompiler(plat=plat, compiler=compiler) c.customize() return c def customized_ccompiler(plat=None, compiler=None, verbose=1): c = ccompiler.new_compiler(plat=plat, compiler=compiler, verbose=verbose) c.customize('') return c
SILENT KILLER Tool