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

Lines Matching defs:append

33    t.append(command, kind)
108 def append(self, cmd, kind):
109 """t.append(cmd, kind) adds a new step at the end."""
112 'Template.append: cmd must be a string'
115 'Template.append: bad kind %r' % (kind,)
118 'Template.append: SOURCE can only be prepended'
121 'Template.append: already ends with SINK'
124 'Template.append: missing $IN in cmd'
127 'Template.append: missing $OUT in cmd'
128 self.steps.append((cmd, kind))
199 list.append(['', cmd, kind, ''])
204 list.append(['', 'cat', '--', ''])
215 list.append(['', 'cat', '--', ''])
227 garbage.append(temp)