Home
last modified time | relevance | path

Searched refs:star_args (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/compiler/
Dast.py282 def __init__(self, node, args, star_args = None, dstar_args = None, lineno=None): argument
285 self.star_args = star_args
293 children.append(self.star_args)
301 if self.star_args is not None:
302 nodelist.append(self.star_args)
308 …return "CallFunc(%s, %s, %s, %s)" % (repr(self.node), repr(self.args), repr(self.star_args), repr(…
Dpycodegen.py1089 if node.star_args is not None:
1090 self.visit(node.star_args)
1093 have_star = node.star_args is not None
/external/python/cpython2/Tools/compiler/
Dast.txt59 CallFunc: node, args!, star_args& = None, dstar_args& = None
/external/python/cpython2/Doc/library/
Dcompiler.rst276 | | :attr:`star_args` | the extended \*-arg value |