From: Fred Drake Date: Wed, 11 Sep 1996 21:58:26 +0000 (+0000) Subject: (parsermodule.c): Fixed sloppy typo: '==' -> '=' X-Git-Tag: v1.4~218 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e1607a8d0e5d4f9e2fda282fb3d9c2c1805024eb;p=thirdparty%2FPython%2Fcpython.git (parsermodule.c): Fixed sloppy typo: '==' -> '=' --- diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 9e7c3fe7e573..0c01ed3f6df2 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -1174,8 +1174,8 @@ validate_varargslist(tree) if (res && (remaining >= 4)) { res = validate_comma(CHILD(tree, pos)); if (--remaining == 3) - res == (validate_star(CHILD(tree, pos + 1)) - && validate_star(CHILD(tree, pos + 2))); + res = (validate_star(CHILD(tree, pos + 1)) + && validate_star(CHILD(tree, pos + 2))); else validate_ntype(CHILD(tree, pos + 1), DOUBLESTAR); }