From c0fd1c0b8313583cf81d413d5a55a61ffe9e11cf Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 12 Jan 1996 01:37:02 +0000 Subject: fix argcount bug for build_node_children --- Modules/parsermodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index db478ad..c057135 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -647,7 +647,7 @@ build_node_children(tuple, root, line_num) if (ISNONTERMINAL(type)) { node* new_child = CHILD(root, i - 1); - if (new_child != build_node_children(elem, new_child)) + if (new_child != build_node_children(elem, new_child, line_num)) return (0); } else if (type == NEWLINE) /* It's true: we increment the */ -- cgit v0.12