Searched refs:starargs (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython2/Parser/ |
D | Python.asdl | 70 expr? starargs, expr? kwargs)
|
/external/python/cpython2/Demo/parser/ |
D | unparse.py | 489 if t.starargs: 493 self.dispatch(t.starargs)
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 267 expr_ty starargs; member 488 starargs, expr_ty kwargs, int lineno, int col_offset, PyArena
|
/external/python/cpython2/Python/ |
D | symtable.c | 1265 if (e->v.Call.starargs) in symtable_visit_expr() 1266 VISIT(st, expr, e->v.Call.starargs); in symtable_visit_expr()
|
D | Python-ast.c | 1772 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()
|
D | compile.c | 2550 if (e->v.Call.starargs) { in compiler_call() 2551 VISIT(c, expr, e->v.Call.starargs); in compiler_call()
|
/external/python/cpython3/Doc/library/ |
D | ast.rst | 484 .. 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/ |
D | ast_edits.py | 124 if node.starargs:
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 2707 ], keywords=[], starargs=None, kwargs=None), 2711 ], keywords=[], starargs=None, kwargs=None)),
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.6.rst | 2711 ], keywords=[], starargs=None, kwargs=None), 2715 ], keywords=[], starargs=None, kwargs=None)),
|