[Python-checkins] r41969 - python/trunk/Python/ast.c

tim.peters python-checkins at python.org
Sun Jan 8 03:28:42 CET 2006


Author: tim.peters
Date: Sun Jan  8 03:28:41 2006
New Revision: 41969

Modified:
   python/trunk/Python/ast.c
Log:
Repair bizarre indentation created by VC 7.1.


Modified: python/trunk/Python/ast.c
==============================================================================
--- python/trunk/Python/ast.c	(original)
+++ python/trunk/Python/ast.c	Sun Jan  8 03:28:41 2006
@@ -2030,7 +2030,7 @@
                 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;
 


More information about the Python-checkins mailing list