a 5a @s\dZddlZddlZddlZddlmZmZddlmZddl m Z d ddZ d d d Z dS) zdistutils.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)DistutilsPlatformErrorDistutilsExecError)DEBUG)logc Cst|}tt||r dS|r@t|d}|dur@||d<|durL|nttj}t j dkrddl m }m }|}|r|||<z tj||d} | | j} WnHty} z0ts|d}td|| jdf| WYd} ~ n d} ~ 00| rts|d}td|| fdS) aRun 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. Nrdarwin)MACOSX_VERSION_VARget_macosx_target_ver)envzcommand %r failed: %sz#command %r failed with exit code %s)listrinfo subprocessZ list2cmdlinefind_executabledictosenvironsysplatformZdistutils.utilrr Popenwait returncodeOSErrorrrargs) cmdZ search_pathverboseZdry_runr executablerr Zmacosx_target_verprocZexitcodeexcrL/opt/alt/python39/lib/python3.9/site-packages/setuptools/_distutils/spawn.pyspawns@    r!c Cstj|\}}tjdkr*|dkr*|d}tj|r:|S|durtjdd}|durztd}Wnt t fytj }Yn0|sdS| tj }|D]&}tj||}tj|r|SqdS)zTries 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. Zwin32z.exeNPATHCS_PATH)rpathsplitextrrisfilergetconfstrAttributeError ValueErrordefpathsplitpathsepjoin)rr$_Zextpathspfrrr rHs(     r)rrrN)N) __doc__rrrZdistutils.errorsrrZdistutils.debugrZ distutilsrr!rrrrr s   6