Home
last modified time | relevance | path

Searched defs:decorator_list (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Include/internal/
Dpycore_ast.h192 asdl_expr_seq *decorator_list; member
201 asdl_expr_seq *decorator_list; member
211 asdl_expr_seq *decorator_list; member
Dpycore_ast_state.h176 PyObject *decorator_list; member
/external/python/cpython3/Python/
DPython-ast.c1945 asdl_expr_seq * decorator_list, expr_ty returns, string in _PyAST_FunctionDef()
1979 body, asdl_expr_seq * decorator_list, expr_ty returns, in _PyAST_AsyncFunctionDef()
2013 keywords, asdl_stmt_seq * body, asdl_expr_seq * decorator_list, in _PyAST_ClassDef()
5675 asdl_expr_seq* decorator_list; in obj2ast_stmt() local
5836 asdl_expr_seq* decorator_list; in obj2ast_stmt() local
5999 asdl_expr_seq* decorator_list; in obj2ast_stmt() local
/external/python/cpython2/Python/
DPython-ast.c1042 decorator_list, int lineno, int col_offset, PyArena *arena) in FunctionDef()
1070 decorator_list, int lineno, int col_offset, PyArena *arena) in ClassDef()
3527 asdl_seq* decorator_list; in obj2ast_stmt() local
3624 asdl_seq* decorator_list; in obj2ast_stmt() local
/external/python/cpython2/Include/
DPython-ast.h76 asdl_seq *decorator_list; member
83 asdl_seq *decorator_list; member
/external/python/cpython3/Lib/test/
Dtest_ast.py1169 def cls(bases=None, keywords=None, body=None, decorator_list=None): argument