Kaydet (Commit) e1607a8d authored tarafından Fred Drake's avatar Fred Drake

(parsermodule.c): Fixed sloppy typo: '==' -> '='

üst 4b7d5a49
...@@ -1174,8 +1174,8 @@ validate_varargslist(tree) ...@@ -1174,8 +1174,8 @@ validate_varargslist(tree)
if (res && (remaining >= 4)) { if (res && (remaining >= 4)) {
res = validate_comma(CHILD(tree, pos)); res = validate_comma(CHILD(tree, pos));
if (--remaining == 3) if (--remaining == 3)
res == (validate_star(CHILD(tree, pos + 1)) res = (validate_star(CHILD(tree, pos + 1))
&& validate_star(CHILD(tree, pos + 2))); && validate_star(CHILD(tree, pos + 2)));
else else
validate_ntype(CHILD(tree, pos + 1), DOUBLESTAR); validate_ntype(CHILD(tree, pos + 1), DOUBLESTAR);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment