Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_cmd_line_script.py120 def _check_script(self, script_exec_args, expected_file, argument
124 if isinstance(script_exec_args, str):
125 script_exec_args = [script_exec_args]
127 *cmd_line_switches, *script_exec_args, *example_args]
131 self._check_output(script_exec_args, rc, out + err, expected_file,
135 def _check_import_error(self, script_exec_args, expected_msg, argument
137 if isinstance(script_exec_args, str):
138 script_exec_args = (script_exec_args,)
140 script_exec_args = tuple(script_exec_args)
141 run_args = cmd_line_switches + script_exec_args
[all …]