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)
164 p = spawn_python()
176 p = spawn_python('-i', stderr=subprocess.PIPE)
179 p = spawn_python('-i', stderr=subprocess.STDOUT)
703 p = spawn_python("-Es", script_name, cwd=work_dir)
708 p = spawn_python("-Es", script_dir, cwd=work_dir)
712 p = spawn_python("-I", script_dir, cwd=work_dir)
738 p = spawn_python("-sm", "script_pkg.__main__", cwd=work_dir)
743 p = spawn_python("-sm", "script_pkg", cwd=work_dir)
761 proc = spawn_python(script, text=True,
[all …]
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.py16 from test.support.script_helper import assert_python_ok, spawn_python
717 with spawn_python('-c', code) as process:
1191 with spawn_python('-c', code) as process:
Dtest_cmd_line.py14 spawn_python, kill_python, assert_python_ok, assert_python_failure,
175 p = spawn_python('-i', '-m', 'timeit', '-n', '1')
355 p = spawn_python('-u', '-c', code)
Dtest_faulthandler.py68 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.py782 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.py181 def spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw): function
/third_party/python/Lib/test/test_import/
D__init__.py412 popen = script_helper.spawn_python(*args)
/third_party/python/Doc/library/
Dtest.rst1162 .. function:: spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw)