summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-12 18:16:03 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-03-12 18:16:03 (GMT)
commit518cf94ad79503fb16475ccc29592b390e7b19da (patch)
tree4dacdeb489a512fc8777bdb603118d98e35b64c5 /Python
parentbebcd18b75b019406019a771a54e96fd1bca54cb (diff)
parent3f3584695e007905d2834a49e4bc21fcc6bc55e7 (diff)
downloadcpython-518cf94ad79503fb16475ccc29592b390e7b19da.zip
cpython-518cf94ad79503fb16475ccc29592b390e7b19da.tar.gz
cpython-518cf94ad79503fb16475ccc29592b390e7b19da.tar.bz2
merge 3.2
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 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