HomeSort by relevance Sort by last modified time
    Searched refs:dstar_args (Results 1 - 4 of 4) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 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))
    [all...]
pycodegen.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 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))
    [all...]
pycodegen.py     [all...]

Completed in 91 milliseconds