diff options
author | Georg Brandl <georg@python.org> | 2016-01-18 06:53:59 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2016-01-18 06:53:59 (GMT) |
commit | 5c60ea3fa1e40c6a3a2e0e9da71f55f8d7d6b2b1 (patch) | |
tree | e2833ef63e6bd17eec40e8c2c4dbaae9142c922a /Python/ast.c | |
parent | 613065b60d823efa6e2be0e0e53079a44305b6b2 (diff) | |
download | cpython-5c60ea3fa1e40c6a3a2e0e9da71f55f8d7d6b2b1.zip cpython-5c60ea3fa1e40c6a3a2e0e9da71f55f8d7d6b2b1.tar.gz cpython-5c60ea3fa1e40c6a3a2e0e9da71f55f8d7d6b2b1.tar.bz2 |
Fix two instances of wrong indentation.
Diffstat (limited to 'Python/ast.c')
-rw-r--r-- | Python/ast.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/ast.c b/Python/ast.c index 33f2597..a5d8dba 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -3214,14 +3214,14 @@ ast_for_import_stmt(struct compiling *c, const node *n) alias_ty import_alias = alias_for_import_name(c, n, 1); if (!import_alias) return NULL; - asdl_seq_SET(aliases, 0, import_alias); + asdl_seq_SET(aliases, 0, import_alias); } else { for (i = 0; i < NCH(n); i += 2) { alias_ty import_alias = alias_for_import_name(c, CHILD(n, i), 1); if (!import_alias) return NULL; - asdl_seq_SET(aliases, i / 2, import_alias); + asdl_seq_SET(aliases, i / 2, import_alias); } } if (mod != NULL) |