Searched refs:executable (Results 1 - 25 of 148) sorted by relevance

123456

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/subprocessdata/
H A Dsigchild_ignore.py6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait()
8 p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/subprocessdata/
H A Dsigchild_ignore.py6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait()
8 p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
H A Dspawn.py6 executable name.
23 executable.
25 If 'search_path' is true (the default), the system's executable
27 must be the exact path to the executable. If 'dry_run' is true,
60 executable = cmd[0]
64 executable = find_executable(executable) or executable
65 log.info(' '.join([executable] + cmd[1:]))
69 rc = os.spawnv(os.P_WAIT, executable, cm
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
H A Dspawn.py6 executable name.
23 executable.
25 If 'search_path' is true (the default), the system's executable
27 must be the exact path to the executable. If 'dry_run' is true,
60 executable = cmd[0]
64 executable = find_executable(executable) or executable
65 log.info(' '.join([executable] + cmd[1:]))
69 rc = os.spawnv(os.P_WAIT, executable, cm
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
H A Dbuild.py44 ('executable=', 'e',
68 self.executable = None
117 if self.executable is None:
118 self.executable = os.path.normpath(sys.executable)
H A Dbuild_scripts.py24 ('executable=', 'e', "specify final destination interpreter path"),
34 self.executable = None
41 ('executable', 'executable'))
99 (self.executable,
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
H A Dbuild.py44 ('executable=', 'e',
68 self.executable = None
117 if self.executable is None:
118 self.executable = os.path.normpath(sys.executable)
H A Dbuild_scripts.py24 ('executable=', 'e', "specify final destination interpreter path"),
34 self.executable = None
41 ('executable', 'executable'))
99 (self.executable,
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_subprocess.py77 rc = subprocess.call([sys.executable, "-c",
83 rc = subprocess.check_call([sys.executable, "-c",
90 subprocess.check_call([sys.executable, "-c",
97 [sys.executable, "-c", "print 'BDFL'"])
104 [sys.executable, "-c", "import sys; sys.exit(5)"])
110 [sys.executable, "-c", "import sys; sys.stderr.write('BDFL')"],
118 [sys.executable, "-c", "print 'will not be run'"],
127 rc = subprocess.call([sys.executable, "-c",
145 p = subprocess.Popen([sys.executable, "-c", 'print "banana"'],
164 'p = Popen([sys.executable, "
[all...]
H A Dtest_platform.py20 real = os.path.realpath(sys.executable)
222 if os.path.isdir(sys.executable) and \
223 os.path.exists(sys.executable+'.exe'):
225 executable = sys.executable + '.exe'
227 executable = sys.executable
228 res = platform.libc_ver(executable)
H A Dtest_popen.py16 python = sys.executable
H A Dtest_pdb.py24 cmd = [sys.executable, '-m', 'pdb', filename]
356 cmd = [sys.executable, '-m', 'pdb', test_fn,]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_subprocess.py77 rc = subprocess.call([sys.executable, "-c",
83 rc = subprocess.check_call([sys.executable, "-c",
90 subprocess.check_call([sys.executable, "-c",
97 [sys.executable, "-c", "print 'BDFL'"])
104 [sys.executable, "-c", "import sys; sys.exit(5)"])
110 [sys.executable, "-c", "import sys; sys.stderr.write('BDFL')"],
118 [sys.executable, "-c", "print 'will not be run'"],
127 rc = subprocess.call([sys.executable, "-c",
145 p = subprocess.Popen([sys.executable, "-c", 'print "banana"'],
164 'p = Popen([sys.executable, "
[all...]
H A Dtest_platform.py20 real = os.path.realpath(sys.executable)
222 if os.path.isdir(sys.executable) and \
223 os.path.exists(sys.executable+'.exe'):
225 executable = sys.executable + '.exe'
227 executable = sys.executable
228 res = platform.libc_ver(executable)
H A Dtest_popen.py16 python = sys.executable
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
H A Dappletrunner.py2 # This file is meant as an executable script for running applets.
3 # BuildApplet will use it as the main executable in the .app bundle if
20 os.execve(sys.executable, sys.argv, os.environ)
H A Dbundlebuilder.py288 # start a real new process. Also, the executable name must match
290 # deliberately with argv[0]. The actual Python executable is
292 # sys.executable later.
299 executable = os.path.join(execdir, "%(executable)s")
318 os.environ["PYTHONEXECUTABLE"] = executable
321 os.execve(executable, sys.argv, os.environ)
361 # platform, name of the subfolder of Contents that contains the executable.
365 # executable in the bundle will be a small wrapper that invokes
369 # The main executable
373 executable = None variable in class:AppBuilder
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
H A Dtest_build.py48 # executable is os.path.normpath(sys.executable)
49 self.assertEqual(cmd.executable, os.path.normpath(sys.executable))
H A Dtest_build_scripts.py50 executable=sys.executable
95 # failed when writing the name of the executable
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
H A Dtest_build.py48 # executable is os.path.normpath(sys.executable)
49 self.assertEqual(cmd.executable, os.path.normpath(sys.executable))
H A Dtest_build_scripts.py50 executable=sys.executable
95 # failed when writing the name of the executable
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A D_osx_support.py29 def _find_executable(executable, path=None):
30 """Tries to find 'executable' in the directories listed in 'path'.
39 base, ext = os.path.splitext(executable)
42 executable = executable + '.exe'
44 if not os.path.isfile(executable):
46 f = os.path.join(p, executable)
52 return executable
475 # 32-bit variant, even if the executable architecture is
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A D_osx_support.py29 def _find_executable(executable, path=None):
30 """Tries to find 'executable' in the directories listed in 'path'.
39 base, ext = os.path.splitext(executable)
42 executable = executable + '.exe'
44 if not os.path.isfile(executable):
46 f = os.path.join(p, executable)
52 return executable
475 # 32-bit variant, even if the executable architecture is
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
H A D__init__.py140 Check whether this is a fake forked process in a frozen executable.
268 def set_executable(executable):
271 child processes on Windows instead of sys.executable.
275 set_executable(executable)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
H A D__init__.py140 Check whether this is a fake forked process in a frozen executable.
268 def set_executable(executable):
271 child processes on Windows instead of sys.executable.
275 set_executable(executable)

Completed in 287 milliseconds

123456