Lines Matching refs:steps
90 return '<Template instance, steps=%r>' % (self.steps,)
94 self.steps = []
100 t.steps = self.steps[:]
119 if self.steps and self.steps[-1][1] == SINK:
128 self.steps.append((cmd, kind))
141 if self.steps and self.steps[0][1] == SOURCE:
150 self.steps.insert(0, (cmd, kind))
165 if not self.steps:
167 if self.steps[-1][1] == SINK:
174 if not self.steps:
176 if self.steps[0][1] == SOURCE:
186 cmd = makepipeline(infile, self.steps, outfile)
193 def makepipeline(infile, steps, outfile): argument
198 for cmd, kind in steps: