summaryrefslogtreecommitdiff
path: root/Modules/parsermodule.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-04-12 05:24:39 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-04-12 05:24:39 +0000
commit65059209c254dc95a351a615199710a7c1dd06cc (patch)
tree9d0d8d82ad4a9d5b86b479779a54e42856ff90fb /Modules/parsermodule.c
parent39572b9c1f58395220ab9ff32ea3254ff8b649e1 (diff)
downloadcpython-65059209c254dc95a351a615199710a7c1dd06cc.tar.gz
Update for new grammar
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r--Modules/parsermodule.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c
index 0f8da8bd78..c9edae672a 100644
--- a/Modules/parsermodule.c
+++ b/Modules/parsermodule.c
@@ -1326,7 +1326,7 @@ validate_gen_for(node *tree)
return res;
}
-/* list_if: 'if' test [list_iter]
+/* list_if: 'if' old_test [list_iter]
*/
static int
validate_list_if(node *tree)
@@ -1341,12 +1341,12 @@ validate_list_if(node *tree)
if (res)
res = (validate_name(CHILD(tree, 0), "if")
- && validate_test(CHILD(tree, 1)));
+ && validate_old_test(CHILD(tree, 1)));
return res;
}
-/* gen_if: 'if' test [gen_iter]
+/* gen_if: 'if' old_test [gen_iter]
*/
static int
validate_gen_if(node *tree)
@@ -1361,7 +1361,7 @@ validate_gen_if(node *tree)
if (res)
res = (validate_name(CHILD(tree, 0), "if")
- && validate_test(CHILD(tree, 1)));
+ && validate_old_test(CHILD(tree, 1)));
return res;
}