Searched refs:spawn_python (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_cmd_line_script.py | 19 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)
|
D | test_zipimport_support.py | 16 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)
|
D | test_signal.py | 14 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:
|
D | test_cmd_line.py | 12 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)
|
D | test_faulthandler.py | 65 process = script_helper.spawn_python('-c', code, pass_fds=pass_fds)
|
D | test_compileall.py | 501 p = script_helper.spawn_python(*(self._get_run_args(()) + ['-i', '-']))
|
D | test_base64.py | 669 with script_helper.spawn_python('-m', 'base64', '-e') as proc:
|
/external/python/cpython2/Lib/test/ |
D | test_cmd_line.py | 9 assert_python_ok, assert_python_failure, spawn_python, kill_python, 16 p = spawn_python(*args) 73 p = spawn_python('-i', '-m', 'timeit', '-n', '1')
|
D | script_helper.py | 71 def spawn_python(*args, **kwargs): function 90 p = spawn_python(*args, **kwargs) 92 p = spawn_python('-O', *args, **kwargs)
|
D | test_zipimport_support.py | 17 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/ |
D | script_helper.py | 162 def spawn_python(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw): function
|
/external/python/cpython3/Lib/test/test_import/ |
D | __init__.py | 328 popen = script_helper.spawn_python(*args)
|