p!ranha?
Server IP : 103.169.32.36  /  Your IP : 216.73.217.13
Web Server : Apache
System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /lib64/python2.7/distutils/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /lib64/python2.7/distutils/spawn.py
"""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.
"""

__revision__ = "$Id$"

import sys
import os

from distutils.errors import DistutilsPlatformError, DistutilsExecError
from distutils import log

def spawn(cmd, search_path=1, verbose=0, dry_run=0):
    """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.
    """
    if os.name == 'posix':
        _spawn_posix(cmd, search_path, dry_run=dry_run)
    elif os.name == 'nt':
        _spawn_nt(cmd, search_path, dry_run=dry_run)
    elif os.name == 'os2':
        _spawn_os2(cmd, search_path, dry_run=dry_run)
    else:
        raise DistutilsPlatformError, \
              "don't know how to spawn programs on platform '%s'" % os.name

def _nt_quote_args(args):
    """Quote command-line arguments for DOS/Windows conventions.

    Just wraps every argument which contains blanks in double quotes, and
    returns a new argument list.
    """
    # XXX this doesn't seem very robust to me -- but if the Windows guys
    # say it'll work, I guess I'll have to accept it.  (What if an arg
    # contains quotes?  What other magic characters, other than spaces,
    # have to be escaped?  Is there an escaping mechanism other than
    # quoting?)
    for i, arg in enumerate(args):
        if ' ' in arg:
            args[i] = '"%s"' % arg
    return args

def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0):
    executable = cmd[0]
    cmd = _nt_quote_args(cmd)
    if search_path:
        # either we find one or it stays the same
        executable = find_executable(executable) or executable
    log.info(' '.join([executable] + cmd[1:]))
    if not dry_run:
        # spawn for NT requires a full path to the .exe
        try:
            rc = os.spawnv(os.P_WAIT, executable, cmd)
        except OSError, exc:
            # this seems to happen when the command isn't found
            raise DistutilsExecError, \
                  "command '%s' failed: %s" % (cmd[0], exc[-1])
        if rc != 0:
            # and this reflects the command running but failing
            raise DistutilsExecError, \
                  "command '%s' failed with exit status %d" % (cmd[0], rc)

def _spawn_os2(cmd, search_path=1, verbose=0, dry_run=0):
    executable = cmd[0]
    if search_path:
        # either we find one or it stays the same
        executable = find_executable(executable) or executable
    log.info(' '.join([executable] + cmd[1:]))
    if not dry_run:
        # spawnv for OS/2 EMX requires a full path to the .exe
        try:
            rc = os.spawnv(os.P_WAIT, executable, cmd)
        except OSError, exc:
            # this seems to happen when the command isn't found
            raise DistutilsExecError, \
                  "command '%s' failed: %s" % (cmd[0], exc[-1])
        if rc != 0:
            # and this reflects the command running but failing
            log.debug("command '%s' failed with exit status %d" % (cmd[0], rc))
            raise DistutilsExecError, \
                  "command '%s' failed with exit status %d" % (cmd[0], rc)

if sys.platform == 'darwin':
    from distutils import sysconfig
    _cfg_target = None
    _cfg_target_split = None

def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0):
    log.info(' '.join(cmd))
    if dry_run:
        return
    exec_fn = search_path and os.execvp or os.execv
    exec_args = [cmd[0], cmd]
    if sys.platform == 'darwin':
        global _cfg_target, _cfg_target_split
        if _cfg_target is None:
            _cfg_target = sysconfig.get_config_var(
                                  'MACOSX_DEPLOYMENT_TARGET') or ''
            if _cfg_target:
                _cfg_target_split = [int(x) for x in _cfg_target.split('.')]
        if _cfg_target:
            # ensure that the deployment target of build process is not less
            # than that used when the interpreter was built. This ensures
            # extension modules are built with correct compatibility values
            cur_target = os.environ.get('MACOSX_DEPLOYMENT_TARGET', _cfg_target)
            if _cfg_target_split > [int(x) for x in cur_target.split('.')]:
                my_msg = ('$MACOSX_DEPLOYMENT_TARGET mismatch: '
                          'now "%s" but "%s" during configure'
                                % (cur_target, _cfg_target))
                raise DistutilsPlatformError(my_msg)
            env = dict(os.environ,
                       MACOSX_DEPLOYMENT_TARGET=cur_target)
            exec_fn = search_path and os.execvpe or os.execve
            exec_args.append(env)
    pid = os.fork()

    if pid == 0:  # in the child
        try:
            exec_fn(*exec_args)
        except OSError, e:
            sys.stderr.write("unable to execute %s: %s\n" %
                             (cmd[0], e.strerror))
            os._exit(1)

        sys.stderr.write("unable to execute %s for unknown reasons" % cmd[0])
        os._exit(1)
    else:   # in the parent
        # Loop until the child either exits or is terminated by a signal
        # (ie. keep waiting if it's merely stopped)
        while 1:
            try:
                pid, status = os.waitpid(pid, 0)
            except OSError, exc:
                import errno
                if exc.errno == errno.EINTR:
                    continue
                raise DistutilsExecError, \
                      "command '%s' failed: %s" % (cmd[0], exc[-1])
            if os.WIFSIGNALED(status):
                raise DistutilsExecError, \
                      "command '%s' terminated by signal %d" % \
                      (cmd[0], os.WTERMSIG(status))

            elif os.WIFEXITED(status):
                exit_status = os.WEXITSTATUS(status)
                if exit_status == 0:
                    return   # hey, it succeeded!
                else:
                    raise DistutilsExecError, \
                          "command '%s' failed with exit status %d" % \
                          (cmd[0], exit_status)

            elif os.WIFSTOPPED(status):
                continue

            else:
                raise DistutilsExecError, \
                      "unknown error executing '%s': termination status %d" % \
                      (cmd[0], status)

def find_executable(executable, path=None):
    """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.
    """
    if path is None:
        path = os.environ['PATH']
    paths = path.split(os.pathsep)
    base, ext = os.path.splitext(executable)

    if (sys.platform == 'win32' or os.name == 'os2') and (ext != '.exe'):
        executable = executable + '.exe'

    if not os.path.isfile(executable):
        for p in paths:
            f = os.path.join(p, executable)
            if os.path.isfile(f):
                # the file exists, we have a shot at spawn working
                return f
        return None
    else:
        return executable
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
December 20 2023 04:52:59
0 / 0
0755
command
--
December 20 2023 04:52:59
0 / 0
0755
README
0.288 KB
November 14 2023 16:14:19
0 / 0
0644
__init__.py
0.329 KB
November 14 2023 16:14:19
0 / 0
0644
__init__.pyc
0.376 KB
November 14 2023 16:14:41
0 / 0
0644
__init__.pyo
0.376 KB
November 14 2023 16:14:41
0 / 0
0644
archive_util.py
7.639 KB
November 14 2023 16:14:19
0 / 0
0644
archive_util.pyc
7.281 KB
November 14 2023 16:14:41
0 / 0
0644
archive_util.pyo
7.281 KB
November 14 2023 16:14:41
0 / 0
0644
bcppcompiler.py
14.591 KB
November 14 2023 16:14:19
0 / 0
0644
bcppcompiler.pyc
7.697 KB
November 14 2023 16:14:41
0 / 0
0644
bcppcompiler.pyo
7.697 KB
November 14 2023 16:14:41
0 / 0
0644
ccompiler.py
45.54 KB
November 14 2023 16:14:19
0 / 0
0644
ccompiler.pyc
35.961 KB
November 14 2023 16:14:41
0 / 0
0644
ccompiler.pyo
35.823 KB
November 14 2023 16:14:43
0 / 0
0644
cmd.py
18.818 KB
November 14 2023 16:14:19
0 / 0
0644
cmd.pyc
16.41 KB
November 14 2023 16:14:41
0 / 0
0644
cmd.pyo
16.41 KB
November 14 2023 16:14:41
0 / 0
0644
config.py
4.033 KB
November 14 2023 16:14:19
0 / 0
0644
config.pyc
3.485 KB
November 14 2023 16:14:41
0 / 0
0644
config.pyo
3.485 KB
November 14 2023 16:14:41
0 / 0
0644
core.py
8.88 KB
November 14 2023 16:14:19
0 / 0
0644
core.pyc
7.495 KB
November 14 2023 16:14:41
0 / 0
0644
core.pyo
7.495 KB
November 14 2023 16:14:41
0 / 0
0644
cygwinccompiler.py
16.865 KB
November 14 2023 16:14:19
0 / 0
0644
cygwinccompiler.pyc
9.188 KB
November 14 2023 16:14:41
0 / 0
0644
cygwinccompiler.pyo
9.188 KB
November 14 2023 16:14:41
0 / 0
0644
debug.py
0.158 KB
November 14 2023 16:14:19
0 / 0
0644
debug.pyc
0.248 KB
November 14 2023 16:14:41
0 / 0
0644
debug.pyo
0.248 KB
November 14 2023 16:14:41
0 / 0
0644
dep_util.py
3.427 KB
November 14 2023 16:14:19
0 / 0
0644
dep_util.pyc
3.105 KB
November 14 2023 16:14:41
0 / 0
0644
dep_util.pyo
3.105 KB
November 14 2023 16:14:41
0 / 0
0644
dir_util.py
7.781 KB
November 14 2023 16:14:19
0 / 0
0644
dir_util.pyc
6.718 KB
November 14 2023 16:14:41
0 / 0
0644
dir_util.pyo
6.718 KB
November 14 2023 16:14:41
0 / 0
0644
dist.py
48.876 KB
November 14 2023 16:14:19
0 / 0
0644
dist.pyc
38.644 KB
November 14 2023 16:14:41
0 / 0
0644
dist.pyo
38.644 KB
November 14 2023 16:14:41
0 / 0
0644
emxccompiler.py
11.651 KB
November 14 2023 16:14:19
0 / 0
0644
emxccompiler.pyc
7.292 KB
November 14 2023 16:14:41
0 / 0
0644
emxccompiler.pyo
7.292 KB
November 14 2023 16:14:41
0 / 0
0644
errors.py
3.412 KB
November 14 2023 16:14:19
0 / 0
0644
errors.pyc
6.138 KB
November 14 2023 16:14:41
0 / 0
0644
errors.pyo
6.138 KB
November 14 2023 16:14:41
0 / 0
0644
extension.py
10.648 KB
November 14 2023 16:14:19
0 / 0
0644
extension.pyc
7.237 KB
November 14 2023 16:14:41
0 / 0
0644
extension.pyo
7.017 KB
November 14 2023 16:14:43
0 / 0
0644
fancy_getopt.py
17.527 KB
November 14 2023 16:14:19
0 / 0
0644
fancy_getopt.pyc
11.678 KB
November 14 2023 16:14:41
0 / 0
0644
fancy_getopt.pyo
11.505 KB
November 14 2023 16:14:43
0 / 0
0644
file_util.py
7.612 KB
November 14 2023 16:14:19
0 / 0
0644
file_util.pyc
6.471 KB
November 14 2023 16:14:41
0 / 0
0644
file_util.pyo
6.471 KB
November 14 2023 16:14:41
0 / 0
0644
filelist.py
12.392 KB
November 14 2023 16:14:19
0 / 0
0644
filelist.pyc
10.511 KB
November 14 2023 16:14:41
0 / 0
0644
filelist.pyo
10.511 KB
November 14 2023 16:14:41
0 / 0
0644
log.py
1.646 KB
November 14 2023 16:14:19
0 / 0
0644
log.pyc
2.721 KB
November 14 2023 16:14:41
0 / 0
0644
log.pyo
2.721 KB
November 14 2023 16:14:41
0 / 0
0644
msvc9compiler.py
30.291 KB
November 14 2023 16:14:19
0 / 0
0644
msvc9compiler.pyc
21.035 KB
November 14 2023 16:14:41
0 / 0
0644
msvc9compiler.pyo
20.964 KB
November 14 2023 16:14:43
0 / 0
0644
msvccompiler.py
23.083 KB
November 14 2023 16:14:19
0 / 0
0644
msvccompiler.pyc
17.112 KB
November 14 2023 16:14:41
0 / 0
0644
msvccompiler.pyo
17.112 KB
November 14 2023 16:14:41
0 / 0
0644
spawn.py
7.607 KB
November 14 2023 16:14:19
0 / 0
0644
spawn.pyc
6.022 KB
November 14 2023 16:14:41
0 / 0
0644
spawn.pyo
6.022 KB
November 14 2023 16:14:41
0 / 0
0644
sysconfig.py
16.521 KB
November 14 2023 16:14:24
0 / 0
0644
sysconfig.py.debug-build
16.42 KB
November 14 2023 16:14:19
0 / 0
0644
sysconfig.pyc
12.957 KB
November 14 2023 16:14:41
0 / 0
0644
sysconfig.pyo
12.957 KB
November 14 2023 16:14:41
0 / 0
0644
text_file.py
12.119 KB
November 14 2023 16:14:19
0 / 0
0644
text_file.pyc
9.027 KB
November 14 2023 16:14:41
0 / 0
0644
text_file.pyo
9.027 KB
November 14 2023 16:14:41
0 / 0
0644
unixccompiler.py
12.558 KB
November 14 2023 16:14:19
0 / 0
0644
unixccompiler.py.distutils-rpath
12.025 KB
November 14 2023 16:14:19
0 / 0
0644
unixccompiler.pyc
7.765 KB
November 14 2023 16:14:41
0 / 0
0644
unixccompiler.pyo
7.765 KB
November 14 2023 16:14:41
0 / 0
0644
util.py
18.284 KB
November 14 2023 16:14:19
0 / 0
0644
util.pyc
14.575 KB
November 14 2023 16:14:41
0 / 0
0644
util.pyo
14.575 KB
November 14 2023 16:14:41
0 / 0
0644
version.py
11.165 KB
November 14 2023 16:14:19
0 / 0
0644
version.pyc
7.039 KB
November 14 2023 16:14:41
0 / 0
0644
version.pyo
7.039 KB
November 14 2023 16:14:41
0 / 0
0644
versionpredicate.py
4.976 KB
November 14 2023 16:14:19
0 / 0
0644
versionpredicate.pyc
5.412 KB
November 14 2023 16:14:41
0 / 0
0644
versionpredicate.pyo
5.412 KB
November 14 2023 16:14:41
0 / 0
0644