
    ,h                       d Z ddlmZ ddlZddlZddlZddlZddlZddlZddl	m
Z
mZ ddlmZmZmZ ddlmZ ddlmZ dd	lmZ erdd
lmZ  ede
      Zd ZddZedd       Zedd       ZddZ	 	 	 	 d	 	 	 	 	 	 	 	 	 	 	 ddZdddZy)zdistutils.spawn

Provides the 'spawn()' function, a front-end to various platform-
specific functions for launching another program in a sub-process.
    )annotationsN)MappingMutableSequence)TYPE_CHECKINGTypeVaroverload   )logDEBUG)DistutilsExecError)_ENV	_MappingT)boundc                    t         r| S | d   S )zE
    Render a subprocess command differently depending on DEBUG.
    r   r   )cmds    ]/var/www/html/Resume-Scraper/venv/lib/python3.12/site-packages/setuptools/_distutils/spawn.py_debugr      s     3#SV#    c                    t        j                         dk7  r| S ddlm}m}  |       }|r||ini }i t        |       |S )NDarwinr	   )MACOSX_VERSION_VARget_macosx_target_ver)platformsystemutilr   r   _resolve)envr   r   
target_verupdates        r   _inject_macos_verr!   $   sD    H$
?&(J1; *-F&hsm&v&&r   c                     y N r   s    r   r   r   /   s    -0r   c                     y r#   r$   r%   s    r   r   r   1   s    +.r   c                *    | t         j                  S | S r#   )osenvironr%   s    r   r   r   3   s    2::-#-r   c                   t        j                  t        j                  |              |ry|rt	        j
                  | d         }||| d<   	 t        j                  | t        |             y# t        $ r-}t        dt        |       d|j                  d          |d}~wt        j                  $ r*}t        dt        |       d|j                         |d}~ww xY w)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.
    Nr   r%   zcommand z	 failed: z failed with exit code )r
   info
subprocesslist2cmdlineshutilwhich
check_callr!   OSErrorr   r   argsCalledProcessError
returncode)r   search_pathverbosedry_runr   
executableexcerrs           r   spawnr<   7   s    , HHZ$$S)*\\#a&)
!CF	c'8'=>  vc{oYsxx|n=
	 ((  vc{o%<S^^<LM
	s$    A/ /	C 8(B  C 6%CC c                   t        j                  dt        d       t        j                  j                  |       \  }}t        j                  dk(  r
|dk7  r| dz   } t        j                  j                  |       r| S |8t        j                  j                  dd      }|	 t        j                  d      }|sy|j                  t        j                         }|D ]E  }t        j                  j#                  ||       }t        j                  j                  |      sC|c S  y# t        t        f$ r t        j                  }Y w xY w)	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.
    z+Use shutil.which instead of find_executable   )
stacklevelwin32z.exeNPATHCS_PATH)warningswarnDeprecationWarningr(   pathsplitextsysr   isfiler)   getconfstrAttributeError
ValueErrordefpathsplitpathsepjoin)r9   rF   _extpathspfs          r   find_executablerW   b   s    MM57IVW WWj)FAscVm&(
	ww~~j!|zz~~fd+<"zz), JJrzz"E GGLLJ'77>>!H	
  #J/ "zz"s   "D$ $EE)r   _MappingT | Nonereturnz'_MappingT | dict[str, str | int] | None)r   NonerY   zos._Environ[str])r   r   rY   r   )r   rX   rY   z_MappingT | os._Environ[str])TFFN)r   z/MutableSequence[bytes | str | os.PathLike[str]]r6   boolr7   r[   r8   r[   r   z_ENV | NonerY   rZ   r#   )r9   strrF   
str | NonerY   r]   )__doc__
__future__r   r(   r   r/   r-   rH   rC   collections.abcr   r   typingr   r   r   _logr
   debugr   errorsr   r   r   r   r!   r   r<   rW   r$   r   r   <module>re      s    # 	    
  4 3 3   & Kw/	$' 
 0 
 0	 . 
 .. (	8(( ( 	(
 
( 
(V$r   