Searched refs:star_args (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Lib/compiler/ |
D | ast.py | 282 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(…
|
D | pycodegen.py | 1089 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/ |
D | ast.txt | 59 CallFunc: node, args!, star_args& = None, dstar_args& = None
|
/external/python/cpython3/Lib/ |
D | argparse.py | 117 star_args = {} 124 star_args[name] = value 125 if star_args: 126 arg_strings.append('**%s' % repr(star_args))
|
/external/python/cpython2/Doc/library/ |
D | compiler.rst | 276 | | :attr:`star_args` | the extended \*-arg value |
|