[Python-checkins] cpython (3.2): fix indentation

benjamin.peterson python-checkins at python.org
Tue Jun 21 04:38:10 CEST 2011


http://hg.python.org/cpython/rev/8ece0dacd8e8
changeset:   70916:8ece0dacd8e8
branch:      3.2
parent:      70880:9e58a638f028
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Jun 20 21:40:19 2011 -0500
summary:
  fix indentation

files:
  Python/ast.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Python/ast.c b/Python/ast.c
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -2283,7 +2283,7 @@
 
  loop:
     switch (TYPE(n)) {
-         case import_as_name: {
+        case import_as_name: {
             node *name_node = CHILD(n, 0);
             str = NULL;
             name = NEW_IDENTIFIER(name_node);

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list