Home | History | Annotate | Download | only in Lib

Lines Matching defs:append

33    t.append(command, kind)

110 def append(self, cmd, kind):
111 """t.append(cmd, kind) adds a new step at the end."""
114 'Template.append: cmd must be a string'
117 'Template.append: bad kind %r' % (kind,)
120 'Template.append: SOURCE can only be prepended'
123 'Template.append: already ends with SINK'
126 'Template.append: missing $IN in cmd'
129 'Template.append: missing $OUT in cmd'
130 self.steps.append((cmd, kind))
201 list.append(['', cmd, kind, ''])
206 list.append(['', 'cat', '--', ''])
217 list.append(['', 'cat', '--', ''])
229 garbage.append(temp)