golden hour
/opt/alt/python27/lib64/python2.7/distutils
⬆️ Go Up
Upload
File/Folder
Size
Actions
README
295 B
Del
OK
__init__.py
236 B
Del
OK
__init__.pyc
428 B
Del
OK
__init__.pyo
428 B
Del
OK
archive_util.py
8.03 KB
Del
OK
archive_util.pyc
7.52 KB
Del
OK
archive_util.pyo
7.52 KB
Del
OK
bcppcompiler.py
14.59 KB
Del
OK
bcppcompiler.pyc
7.81 KB
Del
OK
bcppcompiler.pyo
7.81 KB
Del
OK
ccompiler.py
45.63 KB
Del
OK
ccompiler.pyc
36.72 KB
Del
OK
ccompiler.pyo
36.58 KB
Del
OK
cmd.py
18.82 KB
Del
OK
cmd.pyc
16.88 KB
Del
OK
cmd.pyo
16.88 KB
Del
OK
command
-
Del
OK
config.py
4.04 KB
Del
OK
config.pyc
3.57 KB
Del
OK
config.pyo
3.57 KB
Del
OK
core.py
8.81 KB
Del
OK
core.pyc
7.41 KB
Del
OK
core.pyo
7.41 KB
Del
OK
cygwinccompiler.py
17.32 KB
Del
OK
cygwinccompiler.pyc
9.75 KB
Del
OK
cygwinccompiler.pyo
9.75 KB
Del
OK
debug.py
162 B
Del
OK
debug.pyc
267 B
Del
OK
debug.pyo
267 B
Del
OK
dep_util.py
3.43 KB
Del
OK
dep_util.pyc
3.16 KB
Del
OK
dep_util.pyo
3.16 KB
Del
OK
dir_util.py
7.68 KB
Del
OK
dir_util.pyc
6.72 KB
Del
OK
dir_util.pyo
6.72 KB
Del
OK
dist.py
48.88 KB
Del
OK
dist.pyc
39.11 KB
Del
OK
dist.pyo
39.11 KB
Del
OK
emxccompiler.py
11.65 KB
Del
OK
emxccompiler.pyc
7.41 KB
Del
OK
emxccompiler.pyo
7.41 KB
Del
OK
errors.py
3.41 KB
Del
OK
errors.pyc
6.39 KB
Del
OK
errors.pyo
6.39 KB
Del
OK
extension.py
10.65 KB
Del
OK
extension.pyc
7.29 KB
Del
OK
extension.pyo
7.07 KB
Del
OK
fancy_getopt.py
17.53 KB
Del
OK
fancy_getopt.pyc
11.94 KB
Del
OK
fancy_getopt.pyo
11.77 KB
Del
OK
file_util.py
7.94 KB
Del
OK
file_util.pyc
6.66 KB
Del
OK
file_util.pyo
6.66 KB
Del
OK
filelist.py
12.39 KB
Del
OK
filelist.pyc
10.72 KB
Del
OK
filelist.pyo
10.72 KB
Del
OK
log.py
1.65 KB
Del
OK
log.pyc
2.87 KB
Del
OK
log.pyo
2.87 KB
Del
OK
msvc9compiler.py
30.28 KB
Del
OK
msvc9compiler.pyc
21.39 KB
Del
OK
msvc9compiler.pyo
21.32 KB
Del
OK
msvccompiler.py
23.08 KB
Del
OK
msvccompiler.pyc
17.44 KB
Del
OK
msvccompiler.pyo
17.44 KB
Del
OK
spawn.py
8.45 KB
Del
OK
spawn.pyc
6.37 KB
Del
OK
spawn.pyo
6.37 KB
Del
OK
sysconfig.py
17.29 KB
Del
OK
sysconfig.py.debug-build
17.21 KB
Del
OK
sysconfig.pyc
13.29 KB
Del
OK
sysconfig.pyo
13.29 KB
Del
OK
text_file.py
12.14 KB
Del
OK
text_file.pyc
9.18 KB
Del
OK
text_file.pyo
9.18 KB
Del
OK
unixccompiler.py
13.89 KB
Del
OK
unixccompiler.py.distutils-rpath
13.36 KB
Del
OK
unixccompiler.pyc
8.19 KB
Del
OK
unixccompiler.pyo
8.19 KB
Del
OK
util.py
17.81 KB
Del
OK
util.pyc
14.23 KB
Del
OK
util.pyo
14.23 KB
Del
OK
version.py
11.17 KB
Del
OK
version.pyc
7.23 KB
Del
OK
version.pyo
7.23 KB
Del
OK
versionpredicate.py
4.98 KB
Del
OK
versionpredicate.pyc
5.5 KB
Del
OK
versionpredicate.pyo
5.5 KB
Del
OK
Edit: spawn.pyc
� T~gc @ s� d Z 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 � Z d � Z d d d d � Z d d d d � Z e j d k r� d d l m Z d a d a n d d d d � Z d d � Z d S( s� 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. s $Id$i����N( t DistutilsPlatformErrort DistutilsExecError( t DEBUG( t logi i c C s� t | � } t j d k r1 t | | d | �nZ t j d k rV t | | d | �n5 t j d k r{ t | | d | �n t d t j � d S( s� 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. t posixt dry_runt ntt os2s1 don't know how to spawn programs on platform '%s'N( t listt ost namet _spawn_posixt _spawn_ntt _spawn_os2R ( t cmdt search_patht verboseR ( ( s4 /opt/alt/python27/lib64/python2.7/distutils/spawn.pyt spawn s c C s>