✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server366.web-hosting.com ​🇻​♯➤ 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 67.223.118.204 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.217.86
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /opt/alt/python36/lib/python3.6/site-packages/setuptools//glibc.py
# This file originally from pip:
# https://github.com/pypa/pip/blob/8f4f15a5a95d7d5b511ceaee9ed261176c181970/src/pip/_internal/utils/glibc.py
from __future__ import absolute_import

import ctypes
import re
import warnings


def glibc_version_string():
    "Returns glibc version string, or None if not using glibc."

    # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen
    # manpage says, "If filename is NULL, then the returned handle is for the
    # main program". This way we can let the linker do the work to figure out
    # which libc our process is actually using.
    process_namespace = ctypes.CDLL(None)
    try:
        gnu_get_libc_version = process_namespace.gnu_get_libc_version
    except AttributeError:
        # Symbol doesn't exist -> therefore, we are not linked to
        # glibc.
        return None

    # Call gnu_get_libc_version, which returns a string like "2.5"
    gnu_get_libc_version.restype = ctypes.c_char_p
    version_str = gnu_get_libc_version()
    # py2 / py3 compatibility:
    if not isinstance(version_str, str):
        version_str = version_str.decode("ascii")

    return version_str


# Separated out from have_compatible_glibc for easier unit testing
def check_glibc_version(version_str, required_major, minimum_minor):
    # Parse string and check against requested version.
    #
    # We use a regexp instead of str.split because we want to discard any
    # random junk that might come after the minor version -- this might happen
    # in patched/forked versions of glibc (e.g. Linaro's version of glibc
    # uses version strings like "2.20-2014.11"). See gh-3588.
    m = re.match(r"(?P<major>[0-9]+)\.(?P<minor>[0-9]+)", version_str)
    if not m:
        warnings.warn("Expected glibc version with 2 components major.minor,"
                      " got: %s" % version_str, RuntimeWarning)
        return False
    return (int(m.group("major")) == required_major and
            int(m.group("minor")) >= minimum_minor)


def have_compatible_glibc(required_major, minimum_minor):
    version_str = glibc_version_string()
    if version_str is None:
        return False
    return check_glibc_version(version_str, required_major, minimum_minor)


# platform.libc_ver regularly returns completely nonsensical glibc
# versions. E.g. on my computer, platform says:
#
#   ~$ python2.7 -c 'import platform; print(platform.libc_ver())'
#   ('glibc', '2.7')
#   ~$ python3.5 -c 'import platform; print(platform.libc_ver())'
#   ('glibc', '2.9')
#
# But the truth is:
#
#   ~$ ldd --version
#   ldd (Debian GLIBC 2.22-11) 2.22
#
# This is unfortunate, because it means that the linehaul data on libc
# versions that was generated by pip 8.1.2 and earlier is useless and
# misleading. Solution: instead of using platform, use our code that actually
# works.
def libc_ver():
    """Try to determine the glibc version

    Returns a tuple of strings (lib, version) which default to empty strings
    in case the lookup fails.
    """
    glibc_version = glibc_version_string()
    if glibc_version is None:
        return ("", "")
    else:
        return ("glibc", glibc_version)


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
1 May 2025 12.39 PM
root / linksafe
0755
__pycache__
--
1 May 2025 12.39 PM
root / linksafe
0755
command
--
1 May 2025 12.39 PM
root / linksafe
0755
extern
--
1 May 2025 12.39 PM
root / linksafe
0755
__init__.py
5.566 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
archive_util.py
6.438 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
build_meta.py
5.538 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
config.py
15.997 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
dep_util.py
0.913 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
depends.py
5.7 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
dist.py
39.788 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
extension.py
1.688 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
glibc.py
3.072 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
glob.py
5.085 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
launch.py
0.769 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
lib2to3_ex.py
1.966 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
monkey.py
5.653 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
msvc.py
39.926 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
namespaces.py
3.124 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
package_index.py
39.558 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
pep425tags.py
10.627 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
py27compat.py
0.523 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
py31compat.py
1.164 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
py33compat.py
0.975 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
py36compat.py
2.823 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
sandbox.py
13.941 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
script (dev).tmpl
0.196 KB
13 Nov 2023 9.25 PM
root / root
0644
script.tmpl
0.135 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
site-patch.py
2.253 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
ssl_support.py
8.293 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
unicode_utils.py
0.973 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
version.py
0.141 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
wheel.py
7.063 KB
13 Nov 2023 9.25 PM
root / linksafe
0644
windows_support.py
0.697 KB
13 Nov 2023 9.25 PM
root / linksafe
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF