CasperSecurity

Current Path : /lib/python3.10/__pycache__/
Upload File :
Current File : //lib/python3.10/__pycache__/compileall.cpython-310.pyc

o

`�wiO�@s�dZddlZddlZddlZddlZddlZddlZddlm	Z	ddl
mZgd�Zddd�Z
		
	dddddd�dd
�Z				dddddd�dd�Z				ddd�Zdd�Zedkrhee��Ze�e�dSdS)a�Module/script to byte-compile all .py files to .pyc files.

When called as a script with arguments, this compiles the directories
given as arguments recursively; the -l option prevents it from
recursing into directories.

Without arguments, if compiles all modules on sys.path, without
recursing into subdirectories.  (Even though it should do so for
packages -- for now, you'll have to deal with packages separately.)

See module py_compile for details of the actual byte-compilation.
�N)�partial)�Path)�compile_dir�compile_file�compile_pathccs��|dkrt|tj�rt�|�}|std�|��zt�|�}Wnty6|dkr2td�|��g}Ynw|��|D]>}|dkrDq=tj	�
||�}tj	�|�sU|Vq=|dkr{|tjkr{|tj
kr{tj	�|�r{tj	�|�s{t||d|d�EdHq=dS)N�zListing {!r}...zCan't list {!r}�__pycache__r�)�	maxlevels�quiet)�
isinstance�os�PathLike�fspath�print�format�listdir�OSError�sort�path�join�isdir�curdir�pardir�islink�	_walk_dir)�dirr
r�names�name�fullname�r �!/usr/lib/python3.10/compileall.pyrs:�
�
�
�
���rF���r	��stripdir�
prependdir�
limit_sl_dest�hardlink_dupesc
CsZd}|dur|
dus|durtd��|dur|}
|}d}|dkr$td��|dkrEddlm}z|�Wnty>d}Ynwddlm}|durMt��}t|||d�}d	}|dkr�|dur�|pad}||d
��#}|�	t
t|||||||	|
|||
d�|�}t|d	d�}Wd�|S1s�wY|S|D]}t||||||||	|
|||
d
�s�d}q�|S)a�Byte-compile all modules in the given directory tree.

    Arguments (only dir is required):

    dir:       the directory to byte-compile
    maxlevels: maximum recursion level (default `sys.getrecursionlimit()`)
    ddir:      the directory that will be prepended to the path to the
               file as it is compiled into each byte-code file.
    force:     if True, force compilation, even if timestamps are up-to-date
    quiet:     full output with False or 0, errors only with 1,
               no output with 2
    legacy:    if True, produce legacy pyc paths instead of PEP 3147 paths
    optimize:  int or list of optimization levels or -1 for level of
               the interpreter. Multiple levels leads to multiple compiled
               files each with one optimization level.
    workers:   maximum number of parallel workers
    invalidation_mode: how the up-to-dateness of the pyc will be checked
    stripdir:  part of path to left-strip from source file path
    prependdir: path to prepend to beginning of original file path, applied
               after stripdir
    limit_sl_dest: ignore symlinks if they are pointing outside of
                   the defined path
    hardlink_dupes: hardlink duplicated pyc files
    N�PDestination dir (ddir) cannot be used in combination with stripdir or prependdirrz%workers must be greater or equal to 0r	)�_check_system_limits)�ProcessPoolExecutor)rr
T)�max_workers)�ddir�force�rxr�legacy�optimize�invalidation_moder$r%r&r')�defaultr#F)
�
ValueError�concurrent.futures.processr)�NotImplementedError�concurrent.futuresr*�sys�getrecursionlimitr�maprr�min)rr
r,r-r.rr/r0�workersr1r$r%r&r'r*r)�files�success�executor�results�filer r r!r0sh
��
�
�����rc&
Csn|dur|dus|	durtd��d}t�|�}|dur t�|�nd}tj�|�}
d}|dur5tj�||
�}|durd|�tjj�}|�tjj�}t|�}t	||�D]
\}}||kr]|�
|�qPtjj|�}|	dur{|durttj�|	|�}ntj�|	|�}t|t�r�|g}t
t|��}|r�t|�dkr�td��|dur�|�|�}|r�|S|
dur�tj�|�r�t|
���t|���jvr�|Si}tj�|��r5|D].}|r�|d||<q�|dkr�|dkr�|nd	}tjj||d
�}|||<q�tj�|�}|||<q�|
dd�|
dd�}}|dk�r5|�sXzCtt�|�j�}t�d
tjjd|d@�}|��D]%}t|d��
}|� d�}Wd�n	1�s;wY||k�rGn�q#|WSWn
t!�yWYnw|�sbt"d�#|��z?t$|�D]8\}}||}t%j&|||d||d�} |dk�r�|�r�|||d}!t'j(||!dd��r�t�)|�t�*|!|��qgWn�t%j+�y�}"z?d}|dk�r�|WYd}"~"S|�r�t"d�#|��nt"dd	d�t,j-j.�p�t,�/�}#|"j0j1|#dd��2|#�}$t"|$�WYd}"~"|Sd}"~"wt3t4t!f�y-}%z0d}|dk�r|WYd}%~%S|�rt"d�#|��nt"dd	d�t"|%j5j6d|%�WYd}%~%|Sd}%~%ww| dk�r5d}|S)aByte-compile one file.

    Arguments (only fullname is required):

    fullname:  the file to byte-compile
    ddir:      if given, the directory name compiled in to the
               byte-code file.
    force:     if True, force compilation, even if timestamps are up-to-date
    quiet:     full output with False or 0, errors only with 1,
               no output with 2
    legacy:    if True, produce legacy pyc paths instead of PEP 3147 paths
    optimize:  int or list of optimization levels or -1 for level of
               the interpreter. Multiple levels leads to multiple compiled
               files each with one optimization level.
    invalidation_mode: how the up-to-dateness of the pyc will be checked
    stripdir:  part of path to left-strip from source file path
    prependdir: path to prepend to beginning of original file path, applied
               after stripdir
    limit_sl_dest: ignore symlinks if they are pointing outside of
                   the defined path.
    hardlink_dupes: hardlink duplicated pyc files
    Nr(TrzXHardlinking of duplicated bytecode makes sense only for more than one optimization level�crr	�)�optimization���z.pyz<4sLLl���rb�zCompiling {!r}...)r0r1F)�shallowz*** Error compiling {!r}...z*** )�end�backslashreplace)�errors�:)7r3r
rr�basenamer�split�sep�list�zip�remover�int�sorted�set�len�searchrr�resolve�parents�isfile�	importlib�util�cache_from_source�stat�st_mtime�struct�pack�MAGIC_NUMBER�values�open�readrrr�	enumerate�
py_compile�compile�filecmp�cmp�unlink�link�PyCompileErrorr7�stdout�encoding�getdefaultencoding�msg�encode�decode�SyntaxError�UnicodeError�	__class__�__name__)&rr,r-r.rr/r0r1r$r%r&r'r=r�dfile�fullname_parts�stripdir_parts�
ddir_parts�spart�opart�mo�
opt_cfiles�	opt_level�opt�cfile�head�tail�mtime�expect�chandle�actual�index�ok�previous_cfile�errrnrp�er r r!r}s�

�

�


��
����
��


��
��

rc	CsTd}tjD]"}|r|tjkr|r|dkrtd�q|o&t||d|||||d�}q|S)a�Byte-compile all module on sys.path.

    Arguments (all optional):

    skip_curdir: if true, skip current directory (default True)
    maxlevels:   max recursion level (default 0)
    force: as for compile_dir() (default False)
    quiet: as for compile_dir() (default 0)
    legacy: as for compile_dir() (default False)
    optimize: as for compile_dir() (default -1)
    invalidation_mode: as for compiler_dir()
    TrzSkipping current directoryN)rr/r0r1)r7rr
rrr)	�skip_curdirr
r-rr/r0r1r=rr r r!rs"
��
rc
Cs�ddl}|jdd�}|jddddddd	�|jd
tddd
�|jddddd�|jdddddd�|jddddd�|jdddddd�|jd d!d"dd#d�|jd$d%d&dd'd�|jd(d)d*dd+d�|jd,d-d.d/d0�|jd1d2d3d4d5�|jd6d7d8td9d:�d;d<�tjD�}|jd=t|�d>d?�|jd@dAtdBdCdD�|jdEdFdGdHd0�|jdIddJdKd�|��}|j}|j	r�ddl
}|�|j	�|_	|jdLkr�d|_|j
dur�|j
}n|j}|jdur�dMg|_t|j�d8kr�|jr�|�dN�|jdu�r|jdus�|jdu�r|�dO�|j�rQz0|jdPk�rtjnt|jdQdR��}|D]
}|�|����qWd�n	1�s1wYWnt�yP|jdSk�rMtdT�|j��YdUSw|j �rd|j �!dPdV��"�}	tj|	}
nd}
dW}z^|�r�|D]I}t#j$�%|��r�t&||j|j'|j	|j|j(|
|j|j|j|j|jdX��s�dU}�qnt)|||j|j'|j	|j|j(|j*|
|j|j|j|j|jdY��s�dU}�qn|WSt+|j(|j'|j|
dZ�WSt,�y�|jdSk�r�td[�YdUSw)\zScript main program.rNz1Utilities to support installing Python libraries.)�descriptionz-l�store_constr
z!don't recurse into subdirectories)�action�constr2�dest�helpz-r�	recursionzhcontrol the maximum recursion level. if `-l` and `-r` options are specified, then `-r` takes precedence.)�typer�r�z-f�
store_truer-z/force rebuild even if timestamps are up to date)r�r�r�z-q�countrzIoutput only error messages; -qq will suppress the error messages as well.)r�r�r2r�z-br/z0use legacy (pre-PEP3147) compiled file locationsz-d�DESTDIRr,z�directory to prepend to file paths for use in compile-time tracebacks and in runtime tracebacks in cases where the source file is unavailable)�metavarr�r2r�z-s�STRIPDIRr$z�part of path to left-strip from path to source file - for example buildroot. `-d` and `-s` options cannot be specified together.z-p�
PREPENDDIRr%z�path to add as prefix to path to source file - for example / to make it absolute when some part is removed by `-s` option. `-d` and `-p` options cannot be specified together.z-x�REGEXPr.zskip files matching the regular expression; the regexp is searched for in the full path of each file considered for compilationz-i�FILE�flistzzadd all the files and directories listed in FILE to the list considered for compilation; if "-", names are read from stdin)r�r�r��compile_destzFILE|DIR�*zrzero or more file and directory names to compile; if no arguments given, defaults to the equivalent of -l sys.path)r��nargsr�z-jz	--workersr	zRun compileall concurrently)r2r�r�cSsg|]}|j���dd��qS)�_�-)r�lower�replace)�.0�moder r r!�
<listcomp>is�zmain.<locals>.<listcomp>z--invalidation-modez�set .pyc invalidation mode; defaults to "checked-hash" if the SOURCE_DATE_EPOCH environment variable is set, and "timestamp" otherwise.)�choicesr�z-o�append�
opt_levelsz�Optimization levels to run compilation with. Default is -1 which uses the optimization level of the Python interpreter itself (see -O).)r�r�r�r�z-e�DIRr&z+Ignore symlinks pointing outsite of the DIRz--hardlink-dupesr'zHardlink duplicated pyc filesrBr"zYHardlinking of duplicated bytecode makes sense only for more than one optimization level.z.-d cannot be used in combination with -s or -pr�zutf-8)rnrzError reading file list {}Fr�T)r1r$r%r0r&r')r;r1r$r%r0r&r')r/r-rr1z
[interrupted])-�argparse�ArgumentParser�add_argumentrRrf�PycInvalidationModerS�
parse_argsr�r.�rergr&r�r
r�rUr'�errorr,r$r%r�r7�stdinrcr��striprrrrr1r��upperr
rrYrr-r/rr;r�KeyboardInterrupt)
r��parser�invalidation_modes�args�
compile_destsr�r
�f�line�ivl_moder1r=r�r r r!�main4s�
�
�
��
��
�
��
�
�
����
��




�������
�	�
��r��__main__)r)	NNFNrFr"r	N)NFNrFr"N)r	rFrFr"N)�__doc__r
r7�importlib.utilrZrfr_rh�	functoolsr�pathlibr�__all__rrrrr�rvrR�exit_status�exitr r r r!�<module>sH
��M��
�"�
Hacker Blog, Shell İndir, Sql İnjection, XSS Attacks, LFI Attacks, Social Hacking, Exploit Bot, Proxy Tools, Web Shell, PHP Shell, Alfa Shell İndir, Hacking Training Set, DDoS Script, Denial Of Service, Botnet, RFI Attacks, Encryption
Telegram @BIBIL_0DAY