Home | History | Annotate | Download | only in tools

Lines Matching full:self

146   def __init__(self, args, body):
147 self.args = args
148 self.body = body
149 def expand(self, mapping):
150 result = self.body
156 def __init__(self, args, fun):
157 self.args = args
158 self.fun = fun
159 def expand(self, mapping):
161 for arg in self.args:
163 return str(self.fun(*args))