Searched defs:subprocess (Results 1 - 25 of 69) sorted by relevance

123

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/subprocessdata/
H A Dsigchild_ignore.py1 import signal, subprocess, sys, time namespace
6 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.py1 import signal, subprocess, sys, time namespace
6 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/json/tests/
H A Dtest_tool.py5 import subprocess namespace
41 proc = subprocess.Popen(
43 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_macos.py4 import subprocess namespace
21 subprocess.call(
48 data = subprocess.Popen(["/Developer/Tools/GetFileInfo", test_support.TESTFN],
49 stdout=subprocess.PIPE).communicate()[0]
H A Dscript_helper.py9 import subprocess namespace
23 # Executing the interpreter in a subprocess
33 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
34 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
39 subprocess._cleanup()
68 return subprocess.call(cmd_line, stdout=devnull,
69 stderr=subprocess.STDOUT)
74 return subprocess
[all...]
H A Dtest_file_eintr.py17 import subprocess namespace
85 executed as part of a python subprocess fed data_to_write.
92 # Start a subprocess to call our read method while handling a signal.
93 self._process = subprocess.Popen(
103 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
104 stderr=subprocess.PIPE)
H A Dtest_pdb.py8 import subprocess namespace
26 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
27 stdin=subprocess.PIPE,
28 stderr=subprocess.STDOUT,
357 proc = subprocess.Popen(cmd,
358 stdout=subprocess.PIPE,
359 stdin=subprocess.PIPE,
360 stderr=subprocess.STDOUT,
H A Dtest_popen2.py54 # The os.popen*() API delegates to the subprocess module (on Unix)
55 import subprocess namespace
56 for inst in subprocess._active:
58 subprocess._cleanup()
59 self.assertFalse(subprocess._active, "subprocess._active not empty")
H A Dtest_quopri.py4 import sys, cStringIO, subprocess namespace
179 process = subprocess.Popen([sys.executable, "-mquopri"],
180 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
190 process = subprocess.Popen([sys.executable, "-mquopri", "-d"],
191 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
H A Dtest_platform.py5 import subprocess namespace
18 p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
H A Dtest_sysconfig.py7 import subprocess namespace
252 p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
290 p = subprocess.Popen([
294 stdout=subprocess.PIPE,
310 p = subprocess.Popen([
314 stdout=subprocess.PIPE,
H A Dtest_tools.py11 import subprocess namespace
48 proc = subprocess.Popen(
50 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
H A Dtest_unicodedata.py12 import subprocess namespace
232 # We use a subprocess because the unicodedata module may already have
234 popen = subprocess.Popen(args, stderr=subprocess.PIPE)
H A Dtest_winsound.py8 import subprocess namespace
246 p = subprocess.Popen([cscript_path, check_script],
247 stdout=subprocess.PIPE)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
H A Dtest_tool.py5 import subprocess namespace
41 proc = subprocess.Popen(
43 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_macos.py4 import subprocess namespace
21 subprocess.call(
48 data = subprocess.Popen(["/Developer/Tools/GetFileInfo", test_support.TESTFN],
49 stdout=subprocess.PIPE).communicate()[0]
H A Dscript_helper.py9 import subprocess namespace
23 # Executing the interpreter in a subprocess
33 p = subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
34 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
39 subprocess._cleanup()
68 return subprocess.call(cmd_line, stdout=devnull,
69 stderr=subprocess.STDOUT)
74 return subprocess
[all...]
H A Dtest_file_eintr.py17 import subprocess namespace
85 executed as part of a python subprocess fed data_to_write.
92 # Start a subprocess to call our read method while handling a signal.
93 self._process = subprocess.Popen(
103 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
104 stderr=subprocess.PIPE)
H A Dtest_pdb.py8 import subprocess namespace
26 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
27 stdin=subprocess.PIPE,
28 stderr=subprocess.STDOUT,
357 proc = subprocess.Popen(cmd,
358 stdout=subprocess.PIPE,
359 stdin=subprocess.PIPE,
360 stderr=subprocess.STDOUT,
H A Dtest_popen2.py54 # The os.popen*() API delegates to the subprocess module (on Unix)
55 import subprocess namespace
56 for inst in subprocess._active:
58 subprocess._cleanup()
59 self.assertFalse(subprocess._active, "subprocess._active not empty")
H A Dtest_quopri.py4 import sys, cStringIO, subprocess namespace
179 process = subprocess.Popen([sys.executable, "-mquopri"],
180 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
190 process = subprocess.Popen([sys.executable, "-mquopri", "-d"],
191 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
H A Dtest_platform.py5 import subprocess namespace
18 p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
H A Dtest_sysconfig.py7 import subprocess namespace
252 p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
290 p = subprocess.Popen([
294 stdout=subprocess.PIPE,
310 p = subprocess.Popen([
314 stdout=subprocess.PIPE,
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A DCGIHTTPServer.py51 # the rest to a subprocess, so we can't use buffered input.
259 # Non Unix - use subprocess
260 import subprocess namespace
271 self.log_message("command: %s", subprocess.list2cmdline(cmdline))
276 p = subprocess.Popen(cmdline,
277 stdin = subprocess.PIPE,
278 stdout = subprocess.PIPE,
279 stderr = subprocess.PIPE,
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A DCGIHTTPServer.py51 # the rest to a subprocess, so we can't use buffered input.
259 # Non Unix - use subprocess
260 import subprocess namespace
271 self.log_message("command: %s", subprocess.list2cmdline(cmdline))
276 p = subprocess.Popen(cmdline,
277 stdin = subprocess.PIPE,
278 stdout = subprocess.PIPE,
279 stderr = subprocess.PIPE,

Completed in 714 milliseconds

123