Home | History | Annotate | Download | only in python2.7

Lines Matching refs: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
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):
198 for cmd, kind in steps: