From 3f3584695e007905d2834a49e4bc21fcc6bc55e7 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 12 Mar 2012 11:15:48 -0700 Subject: [PATCH] kill this disabled code --- Python/ast.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Python/ast.c b/Python/ast.c index d67107c5297..6faf5b21a6e 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