summaryrefslogtreecommitdiff
path: root/Python/ast.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-04-11 12:46:24 +0200
committerGeorg Brandl <georg@python.org>2012-04-11 12:46:24 +0200
commitd113fbbdccda87a19675e624650dd02435bf7988 (patch)
treec3f0f368c5f2bfd5d750c0bb082c0b9744b70894 /Python/ast.c
parentb2c574caec7279f6078b9ffecef84f4ed3370725 (diff)
parent25f9ec117a47548f90748ee892b2d5c5eb9e5c79 (diff)
downloadcpython-d113fbbdccda87a19675e624650dd02435bf7988.tar.gz
Merge 3.2.3 release clone.
Diffstat (limited to 'Python/ast.c')
-rw-r--r--Python/ast.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/Python/ast.c b/Python/ast.c
index 6269c649d0..6faf5b21a6 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -645,7 +645,7 @@ seq_for_testlist(struct compiling *c, const node *n)
}
static arg_ty
-compiler_arg(struct compiling *c, const node *n)
+ast_for_arg(struct compiling *c, const node *n)
{
identifier name;
expr_ty annotation = NULL;
@@ -666,12 +666,6 @@ compiler_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
@@ -859,7 +853,7 @@ ast_for_arguments(struct compiling *c, const node *n)
"non-default argument follows default argument");
return NULL;
}
- arg = compiler_arg(c, ch);
+ arg = ast_for_arg(c, ch);
if (!arg)
return NULL;
asdl_seq_SET(posargs, k++, arg);