Searched refs:makepipeline (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Lib/ |
D | pipes.py | 159 cmd = self.makepipeline(file, '') 167 cmd = self.makepipeline('', file) 171 return os.system(self.makepipeline(infile, outfile)) 173 def makepipeline(self, infile, outfile): member in Template 174 cmd = makepipeline(infile, self.steps, outfile) 181 def makepipeline(infile, steps, outfile): function
|
/external/python/cpython2/Lib/ |
D | pipes.py | 170 cmd = self.makepipeline(file, '') 179 cmd = self.makepipeline('', file) 183 return os.system(self.makepipeline(infile, outfile)) 185 def makepipeline(self, infile, outfile): member in Template 186 cmd = makepipeline(infile, self.steps, outfile) 193 def makepipeline(infile, steps, outfile): function
|