Lines Matching defs:stmts
1852 find_ann(asdl_stmt_seq *stmts)
1857 for (i = 0; i < asdl_seq_LEN(stmts); i++) {
1858 st = (stmt_ty)asdl_seq_GET(stmts, i);
2142 compiler_body(struct compiler *c, asdl_stmt_seq *stmts)
2152 if (c->u->u_scope_type == COMPILER_SCOPE_MODULE && asdl_seq_LEN(stmts)) {
2153 st = (stmt_ty)asdl_seq_GET(stmts, 0);
2157 if (find_ann(stmts)) {
2160 if (!asdl_seq_LEN(stmts))
2164 docstring = _PyAST_GetDocString(stmts);
2167 st = (stmt_ty)asdl_seq_GET(stmts, 0);
2175 for (; i < asdl_seq_LEN(stmts); i++)
2176 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i));