summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-12 11:15:48 -0700
committerBenjamin Peterson <benjamin@python.org>2012-03-12 11:15:48 -0700
commit3f3584695e007905d2834a49e4bc21fcc6bc55e7 (patch)
tree32d875d44807c45e6e53cb4196b1db207b89bd30 /Python
parentbc4665ebcb260e937bb50d92270bfcf1d62266dd (diff)
downloadcpython-git-3f3584695e007905d2834a49e4bc21fcc6bc55e7.tar.gz
kill this disabled code
Diffstat (limited to 'Python')
-rw-r--r--Python/ast.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/Python/ast.c b/Python/ast.c
index d67107c529..6faf5b21a6 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -666,12 +666,6 @@ ast_for_arg(struct compiling *c, const node *n)
}
return arg(name, annotation, c->c_arena);
-#if 0
- result = Tuple(args, Store, LINENO(n), n->n_col_offset, c->c_arena);
- if (!set_context(c, result, Store, n))
- return NULL;
- return result;
-#endif
}
/* returns -1 if failed to handle keyword only arguments