Searched refs:write_script (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Lib/distutils/tests/ |
D | test_install_scripts.py | 43 def write_script(name, text): function 51 write_script("script1.py", ("#! /usr/bin/env python2.3\n" 54 write_script("script2.py", ("#!/usr/bin/python\n" 57 write_script("shell.sh", ("#!/bin/sh\n"
|
D | test_build_scripts.py | 57 self.write_script(dir, "script1.py", 62 self.write_script(dir, "script2.py", 67 self.write_script(dir, "shell.sh", 73 def write_script(self, dir, name, text): member in BuildScriptsTestCase
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_install_scripts.py | 43 def write_script(name, text): function 51 write_script("script1.py", ("#! /usr/bin/env python2.3\n" 54 write_script("script2.py", ("#!/usr/bin/python\n" 57 write_script("shell.sh", ("#!/bin/sh\n"
|
D | test_build_scripts.py | 57 self.write_script(dir, "script1.py", 62 self.write_script(dir, "script2.py", 67 self.write_script(dir, "shell.sh", 73 def write_script(self, dir, name, text): member in BuildScriptsTestCase
|
/external/python/setuptools/setuptools/command/ |
D | install_scripts.py | 49 self.write_script(*args) 51 def write_script(self, script_name, contents, mode="t", *ignored): member in install_scripts
|
D | easy_install.py | 795 self.write_script(*args) 805 self.write_script(script_name, _to_ascii(script_text), 'b') 822 def write_script(self, script_name, contents, mode="t", blockers=()): member in easy_install
|