$33 GRAYBYTE WORDPRESS FILE MANAGER $87

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

/opt/alt/python-internal/lib64/python3.11/__pycache__/

HOME
Current File : /opt/alt/python-internal/lib64/python3.11/__pycache__//py_compile.cpython-311.pyc
�

!A?h�����dZddlZddlZddlZddlZddlZddlZddlZddl	Z	gd�Z
Gd�de��ZGd�dej
��Zd�Z		dd�Zd�Zed
kre��dSdS)zqRoutine to "compile" a .py file to a .pyc file.

This module has intimate knowledge of the format of .pyc files.
�N)�compile�main�PyCompileError�PycInvalidationModec� �eZdZdZdd�Zd�ZdS)ra�Exception raised when an error occurs while attempting to
    compile the file.

    To raise this exception, use

        raise PyCompileError(exc_type,exc_value,file[,msg])

    where

        exc_type:   exception type to be used in error message
                    type name can be accesses as class variable
                    'exc_type_name'

        exc_value:  exception value to be used in error message
                    can be accesses as class variable 'exc_value'

        file:       name of file being compiled to be used in error message
                    can be accesses as class variable 'file'

        msg:        string message to be written as error message
                    If no value is given, a default exception message will be
                    given, consistent with 'standard' py_compile output.
                    message (or default) can be accesses as class variable
                    'msg'

    �c�6�|j}|turBd�tj||����}|�dd|z��}nd|�d|��}t�||p||||��||_||_	||_
|p||_dS)NrzFile "<string>"z	File "%s"zSorry: z: )�__name__�SyntaxError�join�	traceback�format_exception_only�replace�	Exception�__init__�
exc_type_name�	exc_value�file�msg)�self�exc_typerrrr�tbtext�errmsgs        �7/opt/alt/python-internal/lib64/python3.11/py_compile.pyrzPyCompileError.__init__.s��� �)�
��{�"�"��W�W�Y�<��)�%�%�&�&�F��^�^�$5�{�T�7I�J�J�F�F�#�
)6�
�
�i�i�@�F����4��
�v�m�I�d�K�K�K�*���"�����	��=�&�����c��|jS)N)r)rs r�__str__zPyCompileError.__str__>s	���x�rN)r)r
�
__module__�__qualname__�__doc__rr�rrrrsA��������6!�!�!�!� ����rrc��eZdZdZdZdZdS)r���N)r
rr�	TIMESTAMP�CHECKED_HASH�UNCHECKED_HASHr!rrrrBs�������I��L��N�N�Nrrc�p�tj�d��rtjStjS)N�SOURCE_DATE_EPOCH)�os�environ�getrr'r&r!rr�_get_default_invalidation_moder.Hs+��	�z�~�~�)�*�*�-�"�/�/�"�,�,rF���c���|�t��}|�Q|dkr,|dkr|nd}tj�||���}ntj�|��}tj�|��r$d}t|�|�����tj�	|��rCtj�
|��s$d}t|�|�����tj�d|��}	|	�
|��}
	|	�|
|p||�	��}na#t$rT}t!|j||p|��}
|d
kr+|r|
�t$j�|
jdz��Yd}~dSd}~wwxYw	tj�|��}|rt	j|��n#t$rYnwxYw|t0jkrC|	�|��}tj�||d|d
��}nNtj�|
��}tj�|||t0jk��}tj� |��}tj�!|||��|S)a�Byte-compile one Python source file to Python bytecode.

    :param file: The source file name.
    :param cfile: The target byte compiled file name.  When not given, this
        defaults to the PEP 3147/PEP 488 location.
    :param dfile: Purported file name, i.e. the file name that shows up in
        error messages.  Defaults to the source file name.
    :param doraise: Flag indicating whether or not an exception should be
        raised when a compile error is found.  If an exception occurs and this
        flag is set to False, a string indicating the nature of the exception
        will be printed, and the function will return to the caller. If an
        exception occurs and this flag is set to True, a PyCompileError
        exception will be raised.
    :param optimize: The optimization level for the compiler.  Valid values
        are -1, 0, 1 and 2.  A value of -1 means to use the optimization
        level of the current interpreter, as given by -O command line options.
    :param invalidation_mode:
    :param quiet: Return full output with False or 0, errors only with 1,
        and no output with 2.

    :return: Path to the resulting byte compiled file.

    Note that it isn't necessary to byte-compile Python modules for
    execution efficiency -- Python itself byte-compiles a module when
    it is loaded, and if it can, writes out the bytecode to the
    corresponding .pyc file.

    However, if a Python installation is shared between users, it is a
    good idea to byte-compile all modules upon installation, since
    other users may not be able to write in the source directories,
    and thus they won't be able to write the .pyc file, and then
    they would be byte-compiling every module each time it is loaded.
    This can slow down program start-up considerably.

    See compileall.py for a script/module that uses this module to
    byte-compile all installed files (or all files in selected
    directories).

    Do note that FileExistsError is raised if cfile ends up pointing at a
    non-regular file or symlink. Because the compilation uses a file renaming,
    the resulting file would be regular and thus not the same type of file as
    it was previously.
    Nrr#r)�optimizationzc{} is a symlink and will be changed into a regular file if import writes a byte-compiled file to itzk{} is a non-regular file and will be changed into a regular one if import writes a byte-compiled file to itz<py_compile>)�	_optimizer$�
�mtime�size)"r.�	importlib�util�cache_from_sourcer+�path�islink�FileExistsError�format�exists�isfile�	machinery�SourceFileLoader�get_data�source_to_coderr�	__class__�sys�stderr�writer�dirname�makedirsrr&�
path_stats�_bootstrap_external�_code_to_timestamp_pyc�source_hash�_code_to_hash_pycr'�
_calc_mode�
_write_atomic)r�cfile�dfile�doraise�optimize�invalidation_mode�quietr1r�loader�source_bytes�code�err�py_excrG�source_stats�bytecoderL�modes                   rrrOs���Z� �:�<�<���}��q�=�=�'/�1�}�}�8�8�"�L��N�4�4�T�BN�5�P�P�E�E��N�4�4�T�:�:�E�	�w�~�~�e���1�:���c�j�j��/�/�0�0�0�	�����	�	�1�r�w�~�~�e�'<�'<�1�A���c�j�j��/�/�0�0�0�
�
 �
1�
1�.�$�
G�
G�F��?�?�4�(�(�L�
��$�$�\�5�=�D�/7�%�9�9����������
�s�E�M�T�B�B���1�9�9��
4����
� � ���d�!2�3�3�3���������������
��'�/�/�%�(�(���	!��K�� � � ����
�
�
���
�����/�9�9�9��(�(��.�.���0�G�G��,�w�'��f�)=�?�?��� �n�0�0��>�>���0�B�B���
�"5�"B�
B�
�
��
�(�3�3�D�9�9�D�
�!�/�/��x��F�F�F��Ls+�?E�
F8�$A	F3�3F8�<5G2�2
G?�>G?c��ddl}d}|�|���}|�dddd���|�d	d
d���|���}|jd
gkr)d�t
j���D��}n|j}|D]�}	t|d����#t$rB}|j
r|�d��n|�d|j��Yd}~�\d}~wt$rJ}|j
r|�d��n#|�dt|����Yd}~��d}~wwxYwdS)Nrz6A simple command-line interface for py_compile module.)�descriptionz-qz--quiet�
store_truezSuppress error output)�action�help�	filenames�+zFiles to compile)�nargsrb�-c�8�g|]}|�d����S)r3)�rstrip)�.0�filenames  r�
<listcomp>zmain.<locals>.<listcomp>�s$��Q�Q�Q�x�X�_�_�T�*�*�Q�Q�QrT)rRr#)�argparse�ArgumentParser�add_argument�
parse_argsrcrD�stdin�	readlinesrrrU�exitr�OSError�str)rlr_�parser�argsrcrj�errors       rrr�s����O�O�O�J�K�
�
$�
$��
$�
=�
=�F�
����i��
$�����
�����
�����
�����D��~�#����Q�Q�3�9�;N�;N�;P�;P�Q�Q�Q�	�	��N�	��+�+��	+��H�d�+�+�+�+�+���	*�	*�	*��z�
*����A��������A�u�y�)�)�)�����������	+�	+�	+��z�
+����A��������A�s�5�z�z�*�*�*����������		+����+�+s%�#B5�5
E�?8C<�<
E�	AE�E�__main__)NNFr/Nr)r �enum�importlib._bootstrap_externalr6�importlib.machinery�importlib.utilr+�os.pathrDr
�__all__rr�Enumrr.rrr
r!rr�<module>r�s-����
����$�$�$�$���������	�	�	�	�����
�
�
�
�����
F�
F�
F��-�-�-�-�-�Y�-�-�-�`�����$�)����-�-�-�CE�*+�^�^�^�^�B +� +� +�F�z����D�F�F�F�F�F��r


Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
5 Aug 2025 8.07 AM
root / linksafe
0755
__future__.cpython-311.opt-1.pyc
4.817 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
__future__.cpython-311.opt-2.pyc
2.817 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
__future__.cpython-311.pyc
4.817 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
__hello__.cpython-311.opt-1.pyc
1.071 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
__hello__.cpython-311.opt-2.pyc
1.019 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
__hello__.cpython-311.pyc
1.071 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_aix_support.cpython-311.opt-1.pyc
4.283 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_aix_support.cpython-311.opt-2.pyc
2.981 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_aix_support.cpython-311.pyc
4.283 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_bootsubprocess.cpython-311.opt-1.pyc
4.374 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_bootsubprocess.cpython-311.opt-2.pyc
4.149 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_bootsubprocess.cpython-311.pyc
4.374 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_collections_abc.cpython-311.opt-1.pyc
50.034 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_collections_abc.cpython-311.opt-2.pyc
44.155 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_collections_abc.cpython-311.pyc
50.034 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_compat_pickle.cpython-311.opt-1.pyc
7.178 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_compat_pickle.cpython-311.opt-2.pyc
7.178 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_compat_pickle.cpython-311.pyc
7.358 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_compression.cpython-311.opt-1.pyc
7.88 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_compression.cpython-311.opt-2.pyc
7.679 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_compression.cpython-311.pyc
7.88 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_markupbase.cpython-311.opt-1.pyc
13.512 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_markupbase.cpython-311.opt-2.pyc
13.146 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_markupbase.cpython-311.pyc
13.771 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_osx_support.cpython-311.opt-1.pyc
19.478 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_osx_support.cpython-311.opt-2.pyc
16.948 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_osx_support.cpython-311.pyc
19.478 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_py_abc.cpython-311.opt-1.pyc
7.64 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_py_abc.cpython-311.opt-2.pyc
6.49 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_py_abc.cpython-311.pyc
7.712 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_pydecimal.cpython-311.opt-1.pyc
238.555 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_pydecimal.cpython-311.opt-2.pyc
160.311 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_pydecimal.cpython-311.pyc
238.555 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_pyio.cpython-311.opt-1.pyc
117.278 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_pyio.cpython-311.opt-2.pyc
95.428 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_pyio.cpython-311.pyc
117.342 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_sitebuiltins.cpython-311.opt-1.pyc
5.315 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_sitebuiltins.cpython-311.opt-2.pyc
4.801 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_sitebuiltins.cpython-311.pyc
5.315 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_strptime.cpython-311.opt-1.pyc
27.272 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_strptime.cpython-311.opt-2.pyc
23.694 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_strptime.cpython-311.pyc
27.272 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_sysconfigdata__linux_x86_64-linux-gnu.cpython-311.opt-1.pyc
62.016 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_sysconfigdata__linux_x86_64-linux-gnu.cpython-311.opt-2.pyc
62.016 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_sysconfigdata__linux_x86_64-linux-gnu.cpython-311.pyc
62.016 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-311.opt-1.pyc
61.54 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-311.opt-2.pyc
61.54 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-311.pyc
61.54 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_threading_local.cpython-311.opt-1.pyc
9.008 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_threading_local.cpython-311.opt-2.pyc
5.776 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_threading_local.cpython-311.pyc
9.008 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_weakrefset.cpython-311.opt-1.pyc
12.851 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_weakrefset.cpython-311.opt-2.pyc
12.851 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
_weakrefset.cpython-311.pyc
12.851 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
abc.cpython-311.opt-1.pyc
8.848 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
abc.cpython-311.opt-2.pyc
5.723 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
abc.cpython-311.pyc
8.848 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
aifc.cpython-311.opt-1.pyc
44.461 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
aifc.cpython-311.opt-2.pyc
39.376 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
aifc.cpython-311.pyc
44.461 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
antigravity.cpython-311.opt-1.pyc
1.246 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
antigravity.cpython-311.opt-2.pyc
1.112 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
antigravity.cpython-311.pyc
1.246 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
argparse.cpython-311.opt-1.pyc
111.046 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
argparse.cpython-311.opt-2.pyc
101.57 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
argparse.cpython-311.pyc
111.33 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
ast.cpython-311.opt-1.pyc
106.857 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
ast.cpython-311.opt-2.pyc
98.683 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
ast.cpython-311.pyc
107.112 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
asynchat.cpython-311.opt-1.pyc
11.627 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
asynchat.cpython-311.opt-2.pyc
10.303 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
asynchat.cpython-311.pyc
11.627 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
asyncore.cpython-311.opt-1.pyc
27.547 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
asyncore.cpython-311.opt-2.pyc
26.37 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
asyncore.cpython-311.pyc
27.547 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
base64.cpython-311.opt-1.pyc
27.383 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
base64.cpython-311.opt-2.pyc
22.891 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
base64.cpython-311.pyc
27.799 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
bdb.cpython-311.opt-1.pyc
37.786 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
bdb.cpython-311.opt-2.pyc
28.66 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
bdb.cpython-311.pyc
37.786 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
bisect.cpython-311.opt-1.pyc
3.633 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
bisect.cpython-311.opt-2.pyc
2.369 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
bisect.cpython-311.pyc
3.633 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
bz2.cpython-311.opt-1.pyc
15.803 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
bz2.cpython-311.opt-2.pyc
11.035 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
bz2.cpython-311.pyc
15.803 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
cProfile.cpython-311.opt-1.pyc
8.881 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
cProfile.cpython-311.opt-2.pyc
8.429 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
cProfile.cpython-311.pyc
8.881 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
calendar.cpython-311.opt-1.pyc
43.711 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
calendar.cpython-311.opt-2.pyc
39.579 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
calendar.cpython-311.pyc
43.711 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
cgi.cpython-311.opt-1.pyc
42.853 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
cgi.cpython-311.opt-2.pyc
34.522 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
cgi.cpython-311.pyc
42.853 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
cgitb.cpython-311.opt-1.pyc
18.458 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
cgitb.cpython-311.opt-2.pyc
16.928 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
cgitb.cpython-311.pyc
18.458 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
chunk.cpython-311.opt-1.pyc
7.271 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
chunk.cpython-311.opt-2.pyc
5.217 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
chunk.cpython-311.pyc
7.271 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
cmd.cpython-311.opt-1.pyc
20.134 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
cmd.cpython-311.opt-2.pyc
14.924 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
cmd.cpython-311.pyc
20.134 KB
23 Jul 2025 10.03 AM
root / linksafe
0644
code.cpython-311.opt-1.pyc