Home
last modified time | relevance | path

Searched refs:starargs (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Parser/
DPython.asdl70 expr? starargs, expr? kwargs)
/external/python/cpython2/Demo/parser/
Dunparse.py489 if t.starargs:
493 self.dispatch(t.starargs)
/external/python/cpython2/Include/
DPython-ast.h267 expr_ty starargs; member
488 starargs, expr_ty kwargs, int lineno, int col_offset, PyArena
/external/python/cpython2/Python/
Dsymtable.c1265 if (e->v.Call.starargs) in symtable_visit_expr()
1266 VISIT(st, expr, e->v.Call.starargs); in symtable_visit_expr()
DPython-ast.c1772 Call(expr_ty func, asdl_seq * args, asdl_seq * keywords, expr_ty starargs, in Call() argument
1788 p->v.Call.starargs = starargs; in Call()
2796 value = ast2obj_expr(o->v.Call.starargs); in ast2obj_expr()
5504 expr_ty starargs; in obj2ast_expr() local
5581 res = obj2ast_expr(tmp, &starargs, arena); in obj2ast_expr()
5586 starargs = NULL; in obj2ast_expr()
5599 *out = Call(func, args, keywords, starargs, kwargs, lineno, in obj2ast_expr()
Dcompile.c2550 if (e->v.Call.starargs) { in compiler_call()
2551 VISIT(c, expr, e->v.Call.starargs); in compiler_call()
/external/python/cpython3/Doc/library/
Dast.rst484 .. class:: Call(func, args, keywords, starargs, kwargs)
494 they can be empty lists. ``starargs`` and ``kwargs`` are optional.
1790 .. class:: ClassDef(name, bases, keywords, starargs, kwargs, body, decorator_list)
1799 * ``starargs`` and ``kwargs`` are each a single node, as in a function call.
1800 starargs will be expanded to join the list of base classes, and kwargs will
/external/tensorflow/tensorflow/tools/compatibility/
Dast_edits.py124 if node.starargs:
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2707 ], keywords=[], starargs=None, kwargs=None),
2711 ], keywords=[], starargs=None, kwargs=None)),
/external/python/cpython3/Doc/whatsnew/
D2.6.rst2711 ], keywords=[], starargs=None, kwargs=None),
2715 ], keywords=[], starargs=None, kwargs=None)),