Lines Matching refs:script
85 script = f.read()
87 script = bytes(prepend, "ascii") + b"\n" + script
89 script += b"\n" + bytes(append, "ascii")
90 return script
109 def run_script(self, script): argument
117 input=script,
125 def start_script(self, script): argument
133 self.popen.stdin.write(script)
176 def run_script(self, script): argument
181 output = self.pyb.exec_(script)
186 def start_script(self, script): argument
188 self.pyb.exec_raw_no_follow(script)