diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-03-12 18:16:03 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-03-12 18:16:03 (GMT) |
commit | 518cf94ad79503fb16475ccc29592b390e7b19da (patch) | |
tree | 4dacdeb489a512fc8777bdb603118d98e35b64c5 /Python/ast.c | |
parent | bebcd18b75b019406019a771a54e96fd1bca54cb (diff) | |
parent | 3f3584695e007905d2834a49e4bc21fcc6bc55e7 (diff) | |
download | cpython-518cf94ad79503fb16475ccc29592b390e7b19da.zip cpython-518cf94ad79503fb16475ccc29592b390e7b19da.tar.gz cpython-518cf94ad79503fb16475ccc29592b390e7b19da.tar.bz2 |
merge 3.2
Diffstat (limited to 'Python/ast.c')
-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 fc42823..eb8aed2 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -1174,12 +1174,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 |