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