Searched refs:spawn_python (Results 1 – 11 of 11) sorted by relevance
/third_party/python/Lib/test/ |
D | test_cmd_line_script.py | 21 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,
|
D | test_zipimport_support.py | 17 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)
|
D | test_signal.py | 15 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:
|
D | test_cmd_line.py | 14 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)
|
D | test_faulthandler.py | 74 process = script_helper.spawn_python('-c', code, pass_fds=pass_fds)
|
D | test_base64.py | 780 with script_helper.spawn_python('-m', 'base64', '-e') as proc:
|
D | test_compileall.py | 762 p = script_helper.spawn_python(*(self._get_run_args(()) + ['-i', '-']))
|
D | test__xxsubinterpreters.py | 1065 with script_helper.spawn_python(filename) as proc:
|
/third_party/python/Lib/test/support/ |
D | script_helper.py | 174 def spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw): function
|
/third_party/python/Lib/test/test_import/ |
D | __init__.py | 399 popen = script_helper.spawn_python(*args)
|
/third_party/python/Doc/library/ |
D | test.rst | 1126 .. function:: spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw)
|