summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-01-08 02:28:41 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-01-08 02:28:41 (GMT)
commite93e64fb1a10db07425cab30a65af1b335bc59ef (patch)
tree63743e1af7d51ecc1054a23187b5d0d1eda62d89
parent5db42c4c5088ce511d35c0a8942f563d95e13230 (diff)
downloadcpython-e93e64fb1a10db07425cab30a65af1b335bc59ef.zip
cpython-e93e64fb1a10db07425cab30a65af1b335bc59ef.tar.gz
cpython-e93e64fb1a10db07425cab30a65af1b335bc59ef.tar.bz2
Repair bizarre indentation created by VC 7.1.
-rw-r--r--Python/ast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c
index 94fc9e8..f155366 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;