Searched refs:ast2obj_expr (Results 1 – 2 of 2) sorted by relevance
158 static PyObject* ast2obj_expr(void*);2165 value = ast2obj_expr(o->v.Expression.body); in ast2obj_mod()2218 ast2obj_expr); in ast2obj_stmt()2233 value = ast2obj_list(o->v.ClassDef.bases, ast2obj_expr); in ast2obj_stmt()2244 ast2obj_expr); in ast2obj_stmt()2254 value = ast2obj_expr(o->v.Return.value); in ast2obj_stmt()2263 value = ast2obj_list(o->v.Delete.targets, ast2obj_expr); in ast2obj_stmt()2272 value = ast2obj_list(o->v.Assign.targets, ast2obj_expr); in ast2obj_stmt()2277 value = ast2obj_expr(o->v.Assign.value); in ast2obj_stmt()2286 value = ast2obj_expr(o->v.AugAssign.target); in ast2obj_stmt()[all …]
193 static PyObject* ast2obj_expr(void*);2599 value = ast2obj_expr(o->v.Expression.body); in ast2obj_mod()2650 value = ast2obj_list(o->v.FunctionDef.decorator_list, ast2obj_expr); in ast2obj_stmt()2655 value = ast2obj_expr(o->v.FunctionDef.returns); in ast2obj_stmt()2680 ast2obj_expr); in ast2obj_stmt()2685 value = ast2obj_expr(o->v.AsyncFunctionDef.returns); in ast2obj_stmt()2699 value = ast2obj_list(o->v.ClassDef.bases, ast2obj_expr); in ast2obj_stmt()2714 value = ast2obj_list(o->v.ClassDef.decorator_list, ast2obj_expr); in ast2obj_stmt()2723 value = ast2obj_expr(o->v.Return.value); in ast2obj_stmt()2732 value = ast2obj_list(o->v.Delete.targets, ast2obj_expr); in ast2obj_stmt()[all …]