Searched refs:run_python (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_zipimport_support.py | 17 from test.script_helper import (spawn_python, kill_python, run_python, 206 exit_code, data = run_python(script_name) 215 exit_code, data = run_python(zip_name)
|
D | test_cmd_line_script.py | 8 from test.script_helper import (run_python, 74 exit_code, data = run_python(*run_args) 94 exit_code, data = run_python(*run_args)
|
D | test_regrtest.py | 214 def run_python(self, args, **kw): member in BaseTestCase 243 output = self.run_python(args) 335 return self.run_python(cmdargs, **kw)
|
D | test_fileio.py | 16 from test.script_helper import run_python 484 _, out = run_python('-c', 'import _io; _io.FileIO(%r)' % filename, env=env)
|
/external/python/cpython3/Lib/test/ |
D | test_subprocess.py | 1382 def run_python(self, code, **kwargs): member in RunFuncTestCase 1389 cp = self.run_python("import sys; sys.exit(47)") 1396 self.run_python("import sys; sys.exit(47)", check=True) 1401 cp = self.run_python("import sys; sys.exit(0)", check=True) 1410 self.run_python("while True: pass", timeout=0.0001) 1414 cp = self.run_python("print('BDFL')", stdout=subprocess.PIPE) 1418 cp = self.run_python("import sys; sys.stderr.write('BDFL')", 1428 cp = self.run_python( 1435 cp = self.run_python( 1448 output = self.run_python("print('will not be run')", [all …]
|
D | test_cmd_line.py | 85 def run_python(*args): function 101 rc, out, err = run_python('-c', code) 105 rc, out, err = run_python('-X', 'showrefcount', '-c', code)
|
D | test_regrtest.py | 529 def run_python(self, args, **kw): member in BaseTestCase 562 output = self.run_python(args) 649 return self.run_python(cmdargs, **kw)
|
/external/python/cpython2/Lib/test/support/ |
D | script_helper.py | 88 def run_python(*args, **kwargs): function
|