Lines Matching refs:arg
9 def __init__(self, arg):10 self.arg = arg13 return '<Coerce %s>' % self.arg17 return self.arg, other.arg19 return self.arg, other22 def __init__(self,arg):23 self.arg = arg26 return '<Cmp %s>' % self.arg29 return cmp(self.arg, other)