Home
last modified time | relevance | path

Searched refs:dstar_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
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))
Dpycodegen.py1091 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/
Dast.txt59 CallFunc: node, args!, star_args& = None, dstar_args& = None
/external/python/cpython2/Doc/library/
Dcompiler.rst278 | | :attr:`dstar_args` | the extended \*\*-arg value |