PHP 8.2.30
Preview: __init__.py Size: 1.45 KB
/opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/_distutils/tests/__init__.py

"""
Test suite for distutils.

Tests for the command classes in the distutils.command package are
included in distutils.tests as well, instead of using a separate
distutils.command.tests package, since command identification is done
by import rather than matching pre-defined names.
"""

import shutil
from collections.abc import Sequence


def missing_compiler_executable(cmd_names: Sequence[str] = []):  # pragma: no cover
    """Check if the compiler components used to build the interpreter exist.

    Check for the existence of the compiler executables whose names are listed
    in 'cmd_names' or all the compiler executables when 'cmd_names' is empty
    and return the first missing executable or None when none is found
    missing.

    """
    from distutils import ccompiler, errors, sysconfig

    compiler = ccompiler.new_compiler()
    sysconfig.customize_compiler(compiler)
    if compiler.compiler_type == "msvc":
        # MSVC has no executables, so check whether initialization succeeds
        try:
            compiler.initialize()
        except errors.DistutilsPlatformError:
            return "msvc"
    for name in compiler.executables:
        if cmd_names and name not in cmd_names:
            continue
        cmd = getattr(compiler, name)
        if cmd_names:
            assert cmd is not None, f"the '{name}' executable is not configured"
        elif not cmd:
            continue
        if shutil.which(cmd[0]) is None:
            return cmd[0]

Directory Contents

Dirs: 2 × Files: 36

Name Size Perms Modified Actions
compat DIR
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
4.00 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
11.51 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
1.36 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
2.19 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
3.84 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
1.70 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
4.23 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
22.02 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
6.72 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
2.81 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
6.08 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
1.21 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
3.18 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
2.60 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
3.74 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
4.39 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
18.35 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
3.58 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
10.51 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
3.44 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
8.42 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
2.41 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
936 B lrw-r--r-- 2026-01-20 13:01:47
Edit Download
3.53 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
1.56 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
323 B lrw-r--r-- 2026-01-20 13:01:47
Edit Download
4.12 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
14.71 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
4.69 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
11.71 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
3.38 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
7.80 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
2.69 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download
0 B lrw-r--r-- 2026-01-20 13:01:47
Edit Download
386 B lrw-r--r-- 2026-01-20 13:01:47
Edit Download
1.45 KB lrw-r--r-- 2026-01-20 13:01:47
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).