From: Tim Peters Date: Sun, 8 Jan 2006 02:28:41 +0000 (+0000) Subject: Repair bizarre indentation created by VC 7.1. X-Git-Tag: v2.5a0~859 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e93e64fb1a10db07425cab30a65af1b335bc59ef;p=python Repair bizarre indentation created by VC 7.1. --- diff --git a/Python/ast.c b/Python/ast.c index 94fc9e8c6f..f1553663e9 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -2030,7 +2030,7 @@ alias_for_import_name(struct compiling *c, const node *n) return alias(NEW_IDENTIFIER(CHILD(n, 0)), NULL, c->c_arena); else { /* Create a string of the form "a.b.c" */ - int i; + int i; size_t len; char *s;