Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_multiprocessing_main_handling.py109 def _make_test_script(script_dir, script_basename, argument
111 to_return = make_script(script_dir, script_basename,
114 if script_basename == "check_sibling":
119 def _make_test_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename, argument
121 to_return = make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename,
136 def _make_launch_script(script_dir, script_basename, module_name, path=None): argument
142 to_return = make_script(script_dir, script_basename, source)
Dtest_cmd_line_script.py78 def _make_test_script(script_dir, script_basename, source=test_source): argument
79 to_return = make_script(script_dir, script_basename, source)
83 def _make_test_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename, argument
85 to_return = make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename,
Dtest_runpy.py594 def _make_test_script(self, script_dir, script_basename, argument
598 return make_script(script_dir, script_basename,
/external/python/cpython2/Lib/test/
Dtest_cmd_line_script.py43 def _make_test_script(script_dir, script_basename, source=test_source): argument
44 return make_script(script_dir, script_basename, source)
46 def _make_test_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename, argument
48 return make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename,
61 def _make_launch_script(script_dir, script_basename, module_name, path=None): argument
67 return make_script(script_dir, script_basename, source)
Dtest_runpy.py333 def _make_test_script(self, script_dir, script_basename, source=None): argument
336 return make_script(script_dir, script_basename, source)
/external/python/cpython2/Lib/test/support/
Dscript_helper.py106 def make_script(script_dir, script_basename, source): argument
107 script_filename = script_basename+os.extsep+'py'
141 def make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename, argument
147 script_name = make_script(zip_dir, script_basename, source)
/external/python/cpython3/Lib/test/support/
Dscript_helper.py202 def make_script(script_dir, script_basename, source, omit_suffix=False): argument
203 script_filename = script_basename
239 def make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename, argument
245 script_name = make_script(zip_dir, script_basename, source)
/external/python/cpython3/Doc/library/
Dtest.rst1379 .. function:: make_script(script_dir, script_basename, source, omit_suffix=False)
1381 Create script containing *source* in path *script_dir* and *script_basename*.
1399 .. function:: make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename, \
1403 containing an empty ``__init__`` file and a file *script_basename*