Home
last modified time | relevance | path

Searched refs:spawn_python (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_cmd_line_script.py19 assert_python_ok, assert_python_failure, spawn_python, kill_python)
168 p = spawn_python()
180 p = spawn_python('-i', bufsize=1, stderr=subprocess.PIPE)
183 p = spawn_python('-i', bufsize=1, stderr=subprocess.STDOUT)
593 p = spawn_python("-Es", script_name, cwd=work_dir)
598 p = spawn_python("-Es", script_dir, cwd=work_dir)
602 p = spawn_python("-I", script_dir, cwd=work_dir)
628 p = spawn_python("-sm", "script_pkg.__main__", cwd=work_dir)
633 p = spawn_python("-sm", "script_pkg", cwd=work_dir)
Dtest_zipimport_support.py16 from test.support.script_helper import (spawn_python, kill_python, assert_python_ok,
226 p = spawn_python(script_name)
233 p = spawn_python(zip_name)
Dtest_signal.py14 from test.support.script_helper import assert_python_ok, spawn_python
480 with spawn_python('-c', code) as process:
941 with spawn_python('-c', code) as process:
Dtest_cmd_line.py12 from test.support.script_helper import (spawn_python, kill_python, assert_python_ok,
120 p = spawn_python('-i', '-m', 'timeit', '-n', '1')
234 p = spawn_python('-u', '-c', code)
Dtest_faulthandler.py65 process = script_helper.spawn_python('-c', code, pass_fds=pass_fds)
Dtest_compileall.py501 p = script_helper.spawn_python(*(self._get_run_args(()) + ['-i', '-']))
Dtest_base64.py669 with script_helper.spawn_python('-m', 'base64', '-e') as proc:
/external/python/cpython2/Lib/test/
Dtest_cmd_line.py9 assert_python_ok, assert_python_failure, spawn_python, kill_python,
16 p = spawn_python(*args)
73 p = spawn_python('-i', '-m', 'timeit', '-n', '1')
Dscript_helper.py71 def spawn_python(*args, **kwargs): function
90 p = spawn_python(*args, **kwargs)
92 p = spawn_python('-O', *args, **kwargs)
Dtest_zipimport_support.py17 from test.script_helper import (spawn_python, kill_python, run_python,
233 p = spawn_python(script_name)
239 p = spawn_python(zip_name)
/external/python/cpython3/Lib/test/support/
Dscript_helper.py162 def spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw): function
/external/python/cpython3/Lib/test/test_import/
D__init__.py328 popen = script_helper.spawn_python(*args)