Home
last modified time | relevance | path

Searched refs:star_args (Results 1 – 6 of 6) 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/tensorflow/tensorflow/python/distribute/
Dtpu_strategy.py186 star_args = []
210 star_args.append(a)
220 return functools.partial(fn, **var_kwargs), star_args, nonvar_kwargs
/external/python/cpython3/Lib/
Dargparse.py119 star_args = {}
126 star_args[name] = value
127 if star_args:
128 arg_strings.append('**%s' % repr(star_args))
/external/python/cpython2/Doc/library/
Dcompiler.rst276 | | :attr:`star_args` | the extended \*-arg value |