diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-03-12 11:15:48 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-03-12 11:15:48 -0700 |
commit | 3f3584695e007905d2834a49e4bc21fcc6bc55e7 (patch) | |
tree | 32d875d44807c45e6e53cb4196b1db207b89bd30 /Python | |
parent | bc4665ebcb260e937bb50d92270bfcf1d62266dd (diff) | |
download | cpython-git-3f3584695e007905d2834a49e4bc21fcc6bc55e7.tar.gz |
kill this disabled code
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ast.c | 6 |
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 |