Home | History | Annotate | Download | only in compiler

Lines Matching refs:dstar_args

282     def __init__(self, node, args, star_args = None, dstar_args = None, lineno=None):
286 self.dstar_args = dstar_args
294 children.append(self.dstar_args)
303 if self.dstar_args is not None:
304 nodelist.append(self.dstar_args)
308 return "CallFunc(%s, %s, %s, %s)" % (repr(self.node), repr(self.args), repr(self.star_args), repr(self.dstar_args))