Searched refs:script_exec_args (Results 1 – 1 of 1) sorted by relevance
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_cmd_line_script.py | 124 def _check_script(self, script_exec_args, expected_file, argument 128 if isinstance(script_exec_args, str): 129 script_exec_args = [script_exec_args] 131 *cmd_line_switches, *script_exec_args, *example_args] 135 self._check_output(script_exec_args, rc, out + err, expected_file, 139 def _check_import_error(self, script_exec_args, expected_msg, argument 141 if isinstance(script_exec_args, str): 142 script_exec_args = (script_exec_args,) 144 script_exec_args = tuple(script_exec_args) 145 run_args = cmd_line_switches + script_exec_args
|