summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-14 04:48:57 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-09-14 04:48:57 (GMT)
commite4668aade91dca363c7b346d8b37d04c5191522b (patch)
tree9417b1e63815575f5a423239414546308219c009 /Python
parent51bfaa7efebc292137c1d9dbbde40fb8db4916ae (diff)
downloadcpython-e4668aade91dca363c7b346d8b37d04c5191522b.zip
cpython-e4668aade91dca363c7b346d8b37d04c5191522b.tar.gz
cpython-e4668aade91dca363c7b346d8b37d04c5191522b.tar.bz2
fix misleading indentation (closes #28139)
Diffstat (limited to 'Python')
-rw-r--r--Python/ast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c
index 2b7aed8..318c0bb 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -2284,7 +2284,7 @@ ast_for_print_stmt(struct compiling *c, const node *n)
dest = ast_for_expr(c, CHILD(n, 2));
if (!dest)
return NULL;
- start = 4;
+ start = 4;
}
values_count = (NCH(n) + 1 - start) / 2;
if (values_count) {