diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-06-21 02:40:19 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-06-21 02:40:19 (GMT) |
commit | f63d615f8bae0a2ad994fb65e37b8657da93a941 (patch) | |
tree | e5ca8c414fbaeac100f29c158737bf25dce0a0f5 | |
parent | 206cd1c284c2bdce943470a4c489012f37831959 (diff) | |
download | cpython-f63d615f8bae0a2ad994fb65e37b8657da93a941.zip cpython-f63d615f8bae0a2ad994fb65e37b8657da93a941.tar.gz cpython-f63d615f8bae0a2ad994fb65e37b8657da93a941.tar.bz2 |
fix indentation
-rw-r--r-- | Python/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c index 2ee2186..6269c64 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -2283,7 +2283,7 @@ alias_for_import_name(struct compiling *c, const node *n, int store) 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); |