Searched refs:star_args (Results 1 – 3 of 3) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/ |
D | ast.txt | 59 CallFunc: node, args!, star_args& = None, dstar_args& = None
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/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
|