diff options
author | Guido van Rossum <guido@python.org> | 1996-01-12 01:37:02 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-01-12 01:37:02 +0000 |
commit | c0fd1c0b8313583cf81d413d5a55a61ffe9e11cf (patch) | |
tree | d9f6557d24900044b70508f06692074348b69c72 /Modules/parsermodule.c | |
parent | ca42b1673b09a1abee2f60015637fed94b8aabd8 (diff) | |
download | cpython-git-c0fd1c0b8313583cf81d413d5a55a61ffe9e11cf.tar.gz |
fix argcount bug for build_node_children
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r-- | Modules/parsermodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index db478ade95..c057135f01 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 */ |