From: Benjamin Peterson Date: Mon, 16 Jan 2012 23:02:21 +0000 (-0500) Subject: fix indentation X-Git-Tag: v3.3.0a1~370 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c64ae92bf1348ccb591df29975b5c4f8c07efb6f;p=python fix indentation --- diff --git a/Python/ast.c b/Python/ast.c index 55faf97c4f..c56564279b 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -2530,13 +2530,13 @@ ast_for_call(struct compiling *c, const node *n, expr_ty func) * then is very confusing. */ if (e->kind == Lambda_kind) { - ast_error(CHILD(ch, 0), "lambda cannot contain assignment"); - return NULL; + ast_error(CHILD(ch, 0), "lambda cannot contain assignment"); + return NULL; } else if (e->kind != Name_kind) { - ast_error(CHILD(ch, 0), "keyword can't be an expression"); - return NULL; + ast_error(CHILD(ch, 0), "keyword can't be an expression"); + return NULL; } else if (forbidden_name(e->v.Name.id, ch, 1)) { - return NULL; + return NULL; } key = e->v.Name.id; for (k = 0; k < nkeywords; k++) {