Lines Matching full:steps
8 conversion involves several steps (e.g. piping it through compress or
9 uuencode). Some of the conversion steps may require that their input
15 more conversion steps together. It will take care of creating and
22 different conversion steps and store them in a dictionary, for
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: