Lines Matching refs:steps
92 return '<Template instance, steps=%r>' % (self.steps,)
96 self.steps = []
102 t.steps = self.steps[:]
118 if self.steps and self.steps[-1][1] == SINK:
124 self.steps.append((cmd, kind))
134 if self.steps and self.steps[0][1] == SOURCE:
140 self.steps.insert(0, (cmd, kind))
155 if not self.steps:
157 if self.steps[-1][1] == SINK:
163 if not self.steps:
165 if self.steps[0][1] == SOURCE:
174 cmd = makepipeline(infile, self.steps, outfile)
181 def makepipeline(infile, steps, outfile): argument
186 for cmd, kind in steps: