Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dpipes.py170 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