projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef87f06
)
use correct naming convention
author
Benjamin Peterson
<benjamin@python.org>
Mon, 12 Mar 2012 18:00:41 +0000
(11:00 -0700)
committer
Benjamin Peterson
<benjamin@python.org>
Mon, 12 Mar 2012 18:00:41 +0000
(11:00 -0700)
Python/ast.c
patch
|
blob
|
history
diff --git
a/Python/ast.c
b/Python/ast.c
index 6269c649d0be15973268081b1ea51060c4c9d410..d67107c529783f37ad67c0f0142e069dad050e5b 100644
(file)
--- a/
Python/ast.c
+++ b/
Python/ast.c
@@
-645,7
+645,7
@@
seq_for_testlist(struct compiling *c, const node *n)
}
static arg_ty
-
compile
r_arg(struct compiling *c, const node *n)
+
ast_fo
r_arg(struct compiling *c, const node *n)
{
identifier name;
expr_ty annotation = NULL;
@@
-859,7
+859,7
@@
ast_for_arguments(struct compiling *c, const node *n)
"non-default argument follows default argument");
return NULL;
}
- arg =
compile
r_arg(c, ch);
+ arg =
ast_fo
r_arg(c, ch);
if (!arg)
return NULL;
asdl_seq_SET(posargs, k++, arg);