AlkantarClanX12
Current Path : /opt/alt/python33/lib64/python3.3/distutils/__pycache__/ |
Current File : //opt/alt/python33/lib64/python3.3/distutils/__pycache__/spawn.cpython-33.pyc |
� ��f�! c @ s� d Z d d l Z d d l Z d d l m Z m Z d d l m Z d d l m Z d d d d d � Z d d � Z d d d d d � Z d d d d d � Z e j d k r� d d l m Z d a d a n d d d d d � Z d d d � Z d S( u� 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. i N( u DistutilsPlatformErroru DistutilsExecError( u DEBUG( u logi c C s� t | � } t j d k r1 t | | d | �n] t j d k rV t | | d | �n8 t j d k r{ t | | d | �n t d t j � � d S( u� 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. u posixu dry_runu ntu os2u1 don't know how to spawn programs on platform '%s'N( u listu osu nameu _spawn_posixu _spawn_ntu _spawn_os2u DistutilsPlatformError( u cmdu search_pathu verboseu dry_run( ( u4 /opt/alt/python33/lib64/python3.3/distutils/spawn.pyu spawn s u spawnc C s>