AlkantarClanX12

Your IP : 3.129.67.248


Current Path : /proc/self/root/opt/alt/python35/lib64/python3.5/distutils/__pycache__/
Upload File :
Current File : //proc/self/root/opt/alt/python35/lib64/python3.5/distutils/__pycache__/spawn.cpython-35.opt-1.pyc



��Yf��@s�dZddlZddlZddlmZmZddlmZddlm	Z	ddddd�Z
d	d
�Zddddd�Zej
d
kr�ddlmZdadaddddd�Zddd�ZdS)z�distutils.spawn

Provides the 'spawn()' function, a front-end to various platform-
specific functions for launching another program in a sub-process.
Also provides the 'find_executable()' to search the path for a given
executable name.
�N)�DistutilsPlatformError�DistutilsExecError)�DEBUG)�log�cCsmt|�}tjdkr1t||d|�n8tjdkrVt||d|�ntdtj��dS)a�Run another program, specified as a command list 'cmd', in a new process.

    'cmd' is just the argument list for the new process, ie.
    cmd[0] is the program to run and cmd[1:] are the rest of its arguments.
    There is no way to run a program with a name different from that of its
    executable.

    If 'search_path' is true (the default), the system's executable
    search path will be used to find the program; otherwise, cmd[0]
    must be the exact path to the executable.  If 'dry_run' is true,
    the command will not actually be run.

    Raise DistutilsExecError if running the program fails in any way; just
    return on success.
    �posix�dry_run�ntz1don't know how to spawn programs on platform '%s'N)�list�os�name�_spawn_posix�	_spawn_ntr)�cmd�search_path�verboser�r�4/opt/alt/python35/lib64/python3.5/distutils/spawn.py�spawnsrcCs;x4t|�D]&\}}d|kr
d|||<q
W|S)z�Quote command-line arguments for DOS/Windows conventions.

    Just wraps every argument which contains blanks in double quotes, and
    returns a new argument list.
    � z"%s")�	enumerate)�args�i�argrrr�_nt_quote_args+srcCs�|d}t|�}|r.t|�p+|}tjdj|g|dd���|s�ytjtj||�}WnNtk
r�}z.t	s�|}t
d||jdf��WYdd}~XnX|dkr�t	s�|}t
d||f��dS)Nrrrzcommand %r failed: %sz%command %r failed with exit status %d���)r�find_executabler�info�joinr�spawnv�P_WAIT�OSErrorrrr)rrrr�
executable�rc�excrrrr;s$
'-r�darwin)�	sysconfigcCs5tjdj|��|r dS|d}|r9tjp?tj}d}tjdkr tdkr�t	j
d�pudatr�dd�tjd�D�atr tj
jdt�}td	d�|jd�D�kr�d
|tf}t|��ttj
d|�}|rtjptj}tj�}	|	dkr�y0|dkrW|||�n||||�Wn[tk
r�}
z;ts�|}tjjd||
jf�tjd�WYdd}
~
XnXts�|}tjjd
|�tjd�n;x8ytj|	d�\}	}WnNtk
re}z.ts6|}td||jdf��WYdd}~XnXtj|�r�ts�|}td|tj|�f��q�tj|�r�tj |�}
|
dkr�dSts�|}td||
f��q�tj!|�rq�q�ts|}td||f��q�WdS)Nrrr%�MACOSX_DEPLOYMENT_TARGET�cSsg|]}t|��qSr)�int)�.0�xrrr�
<listcomp>es	z _spawn_posix.<locals>.<listcomp>�.cSsg|]}t|��qSr)r))r*r+rrrr,ks	zF$MACOSX_DEPLOYMENT_TARGET mismatch: now "%s" but "%s" during configurezunable to execute %r: %s
rz(unable to execute %r for unknown reasonszcommand %r failed: %sz"command %r terminated by signal %dz%command %r failed with exit status %dz1unknown error executing %r: termination status %dr)"rrrr�execvp�execv�sys�platform�_cfg_targetr&�get_config_var�split�_cfg_target_split�environ�getr�dict�execvpe�execve�forkr!r�stderr�write�strerror�_exit�waitpidrr�WIFSIGNALED�WTERMSIG�	WIFEXITED�WEXITSTATUS�
WIFSTOPPED)rrrrr"Zexec_fn�envZ
cur_targetZmy_msg�pid�eZstatusr$Zexit_statusrrrr
Xs�
"
	 -r
cCs�|dkrtjd}|jtj�}tjj|�\}}tjdkrh|dkrh|d}tjj|�s�x9|D]1}tjj	||�}tjj|�r�|Sq�WdS|SdS)z�Tries to find 'executable' in the directories listed in 'path'.

    A string listing directories separated by 'os.pathsep'; defaults to
    os.environ['PATH'].  Returns the complete filename or None if not found.
    N�PATH�win32z.exe)
rr6r4�pathsep�path�splitextr0r1�isfiler)r"rL�paths�baseZext�p�frrrr�s


r)�__doc__r0rZdistutils.errorsrrZdistutils.debugrZ	distutilsrrrrr1r&r2r5r
rrrrr�<module>sQ