Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/distutils/tests/
Dtest_install_scripts.py43 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"
Dtest_build_scripts.py57 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/
Dtest_install_scripts.py43 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"
Dtest_build_scripts.py57 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/
Dinstall_scripts.py49 self.write_script(*args)
51 def write_script(self, script_name, contents, mode="t", *ignored): member in install_scripts
Deasy_install.py795 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