Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython3/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:
/aosp_15_r20/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')
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)
/aosp_15_r20/external/python/cpython2/Lib/test/support/
Dscript_helper.py71 def spawn_python(*args, **kwargs): function
90 p = spawn_python(*args, **kwargs)
92 p = spawn_python('-O', *args, **kwargs)
/aosp_15_r20/external/python/cpython3/Lib/test/support/
Dscript_helper.py181 def spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw): function
/aosp_15_r20/external/python/cpython3/Lib/test/test_import/
D__init__.py412 popen = script_helper.spawn_python(*args)
/aosp_15_r20/external/python/cpython3/Doc/library/
Dtest.rst1162 .. function:: spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw)