$52 GRAYBYTE WORDPRESS FILE MANAGER $54

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 104.21.43.35 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/python311/lib64/python3.11/distutils/__pycache__/

HOME
Current File : /opt/alt/python311/lib64/python3.11/distutils/__pycache__//core.cpython-311.opt-1.pyc
�

���h�"���dZddlZddlZddlmZddlTddlmZddlm	Z	ddl
mZddlm
Z
d	Zd
�ZdadadZdZd
�Zdd�ZdS)a#distutils.core

The only module that needs to be imported to use the Distutils; provides
the 'setup' function (which is to be called from the setup script).  Also
indirectly provides the Distribution and Command classes, although they are
really defined in distutils.dist and distutils.cmd.
�N)�DEBUG)�*)�Distribution)�Command)�
PyPIRCCommand)�	Extensionz�usage: %(script)s [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: %(script)s --help [cmd1 cmd2 ...]
   or: %(script)s --help-commands
   or: %(script)s cmd --help
c�l�tj�|��}tt	��zS)N)�os�path�basename�USAGE�vars)�script_name�scripts  �5/opt/alt/python311/lib64/python3.11/distutils/core.py�	gen_usager s%��
�W�
�
�k�
*�
*�F��4�6�6�>��)�	distclassr�script_args�options�name�version�author�author_email�
maintainer�maintainer_email�url�license�description�long_description�keywords�	platforms�classifiers�download_url�requires�provides�	obsoletes)r�sources�include_dirs�
define_macros�undef_macros�library_dirs�	libraries�runtime_library_dirs�
extra_objects�extra_compile_args�extra_link_args�	swig_opts�export_symbols�depends�languagec��|�d��}|r|d=nt}d|vr2tj�t
jd��|d<d|vrt
jdd�|d<	||��xa}nC#t$r6}d|vrtd|z���td	|d�d
|�����d}~wwxYwtdkr|S|���tr#td��|���td
kr|S	|���}n9#t $r,}tt#|j��d|zz���d}~wwxYwtr#td��|���tdkr|S|r�	|���n�#t($rtd���t*$rB}tr$t
j�d|�d����td|�����d}~wt0t2f$r,}tr�tdt5|��z���d}~wwxYw|S)a�The gateway to the Distutils: do everything your setup script needs
    to do, in a highly flexible and user-driven way.  Briefly: create a
    Distribution instance; find and parse config files; parse the command
    line; run each Distutils command found there, customized by the options
    supplied to 'setup()' (as keyword arguments), in config files, and on
    the command line.

    The Distribution instance might be an instance of a class supplied via
    the 'distclass' keyword argument to 'setup'; if no such class is
    supplied, then the Distribution class (in dist.py) is instantiated.
    All other arguments to 'setup' (except for 'cmdclass') are used to set
    attributes of the Distribution instance.

    The 'cmdclass' argument, if supplied, is a dictionary mapping command
    names to command classes.  Each command encountered on the command line
    will be turned into a command class, which is in turn instantiated; any
    class found in 'cmdclass' is used in place of the default, which is
    (for command 'foo_bar') class 'foo_bar' in module
    'distutils.command.foo_bar'.  The command class must provide a
    'user_options' attribute which is a list of option specifiers for
    'distutils.fancy_getopt'.  Any command-line options between the current
    and the next command are used to set attributes of the current command
    object.

    When the entire command-line has been successfully parsed, calls the
    'run()' method on each command object in turn.  This method will be
    driven entirely by the Distribution object (which each command object
    has a reference to, thanks to its constructor), and the
    command-specific options that became attributes of each command
    object.
    rrrr�Nrzerror in setup command: %sz	error in z setup command: �initz%options (after parsing config files):�configz

error: %sz%options (after parsing command line):�commandline�interruptedzerror: �
)�getrr
rr�sys�argv�_setup_distribution�DistutilsSetupError�
SystemExit�_setup_stop_after�parse_config_filesr�print�dump_option_dicts�parse_command_line�DistutilsArgErrorrr�run_commands�KeyboardInterrupt�OSError�stderr�write�DistutilsError�CCompilerError�str)�attrs�klass�dist�msg�ok�excs      r�setuprW9s���J
�I�I�k�"�"�E����+������E�!�!�!�w�/�/�����<�<��m���U�"�"�"�x����|��m��(�%*�U�5�\�\�1��d�d���(�(�(������9�C�?�@�@�@��*���=�=�=�#�#�'�(�(�
(�����	(�����F�"�"���	�������!�
�5�6�6�6���� � � ��H�$�$���
L�
�
$�
$�
&�
&�����L�L�L���4�#3�4�4�}�s�7J�J�K�K�K�����L����
�!�
�5�6�6�6���� � � ��M�)�)���
�7�	7��������� �	,�	,�	,��]�+�+�+��	7�	7�	7��
7��
� � � �#�#�#�!7�8�8�8�� �j���!5�6�6�6������� �	7�	7�	7��
7�� ��S��X�X�!5�6�6�6�����	7�����KsT�5
B�
C�
1B>�>C�D4�4
E*�>'E%�%E*�'F<�<"I�=H�I�/'I�I�runc��|dvrtd|�����|atj���}d|i}		|tjd<|�|tjdd�<t|d��5}t
|���|��ddd��n#1swxYwY|t_dan#|t_dawxYwn#t$rYnwxYwt�td|z���tS)	a.Run a setup script in a somewhat controlled environment, and
    return the Distribution instance that drives things.  This is useful
    if you need to find out the distribution meta-data (passed as
    keyword args from 'script' to 'setup()', or the contents of the
    config files or command-line.

    'script_name' is a file that will be read and run with 'exec()';
    'sys.argv[0]' will be replaced with 'script' for the duration of the
    call.  'script_args' is a list of strings; if supplied,
    'sys.argv[1:]' will be replaced by 'script_args' for the duration of
    the call.

    'stop_after' tells 'setup()' when to stop processing; possible
    values:
      init
        stop after the Distribution instance has been created and
        populated with the keyword arguments to 'setup()'
      config
        stop after config files have been parsed (and their data
        stored in the Distribution instance)
      commandline
        stop after the command-line ('sys.argv[1:]' or 'script_args')
        have been parsed (and the data stored in the Distribution)
      run [default]
        stop after all commands have been run (the same as if 'setup()'
        had been called in the usual way

    Returns the Distribution instance, which provides all information
    used to drive the Distutils.
    )r8r9r:rXz invalid value for 'stop_after': �__file__rNr7�rbzZ'distutils.core.setup()' was never called -- perhaps '%s' is not a Distutils setup script?)�
ValueErrorrCr>r?�copy�open�exec�readrBr@�RuntimeError)rr�
stop_after�	save_argv�g�fs      r�	run_setuprf�sl��>�A�A�A��j���M�N�N�N�#����
�
���I�	�[�!�A�

�	%�%�C�H�Q�K��&�*��������k�4�(�(�
"�A��Q�V�V�X�X�q�!�!�!�
"�
"�
"�
"�
"�
"�
"�
"�
"�
"�
"����
"�
"�
"�
"�!�C�H� $����!�C�H� $��$�$�$�$����
�
�
�	
��
����
�"��?�����	��sG�2B8�/#B�B8�B"�"B8�%B"�&B8�)C�8C�C�
C�C)NrX)�__doc__r
r>�distutils.debugr�distutils.errors�distutils.distr�
distutils.cmdr�distutils.configr�distutils.extensionrr
rrCr@�setup_keywords�extension_keywordsrWrf�rr�<module>rqs�����
�	�	�	�
�
�
�
�!�!�!�!�!�!�����(�'�'�'�'�'�!�!�!�!�!�!�*�*�*�*�*�*�)�)�)�)�)�)�	�����������L��l�l�l�b>�>�>�>�>�>r


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
10 Feb 2026 9.36 AM
root / linksafe
0755
__init__.cpython-311.opt-1.pyc
0.802 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
__init__.cpython-311.opt-2.pyc
0.623 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
__init__.cpython-311.pyc
0.802 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
_msvccompiler.cpython-311.opt-1.pyc
23.692 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
_msvccompiler.cpython-311.opt-2.pyc
22.582 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
_msvccompiler.cpython-311.pyc
23.773 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
archive_util.cpython-311.opt-1.pyc
10.414 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
archive_util.cpython-311.opt-2.pyc
8.453 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
archive_util.cpython-311.pyc
10.414 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
bcppcompiler.cpython-311.opt-1.pyc
12.751 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
bcppcompiler.cpython-311.opt-2.pyc
12.468 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
bcppcompiler.cpython-311.pyc
12.751 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
ccompiler.cpython-311.opt-1.pyc
43.316 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
ccompiler.cpython-311.opt-2.pyc
27.621 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
ccompiler.cpython-311.pyc
43.565 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
cmd.cpython-311.opt-1.pyc
18.356 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
cmd.cpython-311.opt-2.pyc
12.743 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
cmd.cpython-311.pyc
18.356 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
config.cpython-311.opt-1.pyc
6.233 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
config.cpython-311.opt-2.pyc
5.881 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
config.cpython-311.pyc
6.233 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
core.cpython-311.opt-1.pyc
8.841 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
core.cpython-311.opt-2.pyc
5.546 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
core.cpython-311.pyc
8.841 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
cygwinccompiler.cpython-311.opt-1.pyc
13.791 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
cygwinccompiler.cpython-311.opt-2.pyc
12.243 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
cygwinccompiler.cpython-311.pyc
13.791 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
debug.cpython-311.opt-1.pyc
0.285 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
debug.cpython-311.opt-2.pyc
0.285 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
debug.cpython-311.pyc
0.285 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
dep_util.cpython-311.opt-1.pyc
3.874 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
dep_util.cpython-311.opt-2.pyc
2.484 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
dep_util.cpython-311.pyc
3.874 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
dir_util.cpython-311.opt-1.pyc
9.799 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
dir_util.cpython-311.opt-2.pyc
7.514 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
dir_util.cpython-311.pyc
9.799 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
dist.cpython-311.opt-1.pyc
53.461 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
dist.cpython-311.opt-2.pyc
44.537 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
dist.cpython-311.pyc
53.461 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
errors.cpython-311.opt-1.pyc
6.597 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
errors.cpython-311.opt-2.pyc
4.042 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
errors.cpython-311.pyc
6.597 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
extension.cpython-311.opt-1.pyc
9.917 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
extension.cpython-311.opt-2.pyc
6.512 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
extension.cpython-311.pyc
9.917 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
fancy_getopt.cpython-311.opt-1.pyc
16.434 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
fancy_getopt.cpython-311.opt-2.pyc
13.763 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
fancy_getopt.cpython-311.pyc
16.708 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
file_util.cpython-311.opt-1.pyc
10.133 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
file_util.cpython-311.opt-2.pyc
8.071 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
file_util.cpython-311.pyc
10.133 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
filelist.cpython-311.opt-1.pyc
15.512 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
filelist.cpython-311.opt-2.pyc
12.754 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
filelist.cpython-311.pyc
15.792 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
log.cpython-311.opt-1.pyc
3.809 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
log.cpython-311.opt-2.pyc
3.75 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
log.cpython-311.pyc
3.809 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
msvc9compiler.cpython-311.opt-1.pyc
32.306 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
msvc9compiler.cpython-311.opt-2.pyc
30.77 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
msvc9compiler.cpython-311.pyc
32.387 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
msvccompiler.cpython-311.opt-1.pyc
26.023 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
msvccompiler.cpython-311.opt-2.pyc
24.539 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
msvccompiler.cpython-311.pyc
26.023 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
spawn.cpython-311.opt-1.pyc
5.478 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
spawn.cpython-311.opt-2.pyc
4.384 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
spawn.cpython-311.pyc
5.478 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
sysconfig.cpython-311.opt-1.pyc
11.815 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
sysconfig.cpython-311.opt-2.pyc
10.04 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
sysconfig.cpython-311.pyc
11.815 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
text_file.cpython-311.opt-1.pyc
11.236 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
text_file.cpython-311.opt-2.pyc
6.302 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
text_file.cpython-311.pyc
11.236 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
unixccompiler.cpython-311.opt-1.pyc
12.95 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
unixccompiler.cpython-311.opt-2.pyc
12.34 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
unixccompiler.cpython-311.pyc
12.95 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
util.cpython-311.opt-1.pyc
24.085 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
util.cpython-311.opt-2.pyc
18.419 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
util.cpython-311.pyc
24.099 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
version.cpython-311.opt-1.pyc
10.105 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
version.cpython-311.opt-2.pyc
6.894 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
version.cpython-311.pyc
10.128 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
versionpredicate.cpython-311.opt-1.pyc
7.052 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
versionpredicate.cpython-311.opt-2.pyc
4.655 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
versionpredicate.cpython-311.pyc
7.052 KB
7 Jan 2026 10.45 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF