Searched refs:dstar_args (Results 1 – 4 of 4) 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 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 …(%s, %s, %s, %s)" % (repr(self.node), repr(self.args), repr(self.star_args), repr(self.dstar_args))
|
D | pycodegen.py | 1091 if node.dstar_args is not None: 1092 self.visit(node.dstar_args) 1094 have_dstar = node.dstar_args is not None
|
/external/python/cpython2/Tools/compiler/ |
D | ast.txt | 59 CallFunc: node, args!, star_args& = None, dstar_args& = None
|
/external/python/cpython2/Doc/library/ |
D | compiler.rst | 278 | | :attr:`dstar_args` | the extended \*\*-arg value |
|