Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_cmd_line_script.py21 assert_python_ok, assert_python_failure, spawn_python, kill_python)
162 p = spawn_python()
174 p = spawn_python('-i', stderr=subprocess.PIPE)
177 p = spawn_python('-i', stderr=subprocess.STDOUT)
676 p = spawn_python("-Es", script_name, cwd=work_dir)
681 p = spawn_python("-Es", script_dir, cwd=work_dir)
685 p = spawn_python("-I", script_dir, cwd=work_dir)
711 p = spawn_python("-sm", "script_pkg.__main__", cwd=work_dir)
716 p = spawn_python("-sm", "script_pkg", cwd=work_dir)
734 proc = spawn_python(script, text=True,
Dtest_zipimport_support.py17 from test.support.script_helper import (spawn_python, kill_python, assert_python_ok,
225 p = spawn_python(script_name)
232 p = spawn_python(zip_name)
Dtest_signal.py15 from test.support.script_helper import assert_python_ok, spawn_python
658 with spawn_python('-c', code) as process:
1128 with spawn_python('-c', code) as process:
Dtest_cmd_line.py14 spawn_python, kill_python, assert_python_ok, assert_python_failure,
133 p = spawn_python('-i', '-m', 'timeit', '-n', '1')
304 p = spawn_python('-u', '-c', code)
Dtest_faulthandler.py74 process = script_helper.spawn_python('-c', code, pass_fds=pass_fds)
Dtest_base64.py780 with script_helper.spawn_python('-m', 'base64', '-e') as proc:
Dtest_compileall.py762 p = script_helper.spawn_python(*(self._get_run_args(()) + ['-i', '-']))
Dtest__xxsubinterpreters.py1065 with script_helper.spawn_python(filename) as proc:
/third_party/python/Lib/test/support/
Dscript_helper.py174 def spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw): function
/third_party/python/Lib/test/test_import/
D__init__.py399 popen = script_helper.spawn_python(*args)
/third_party/python/Doc/library/
Dtest.rst1126 .. function:: spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw)