From: Thomas Wouters Date: Fri, 25 Aug 2000 05:41:11 +0000 (+0000) Subject: Fix allowable node-types for assignment, need to add 'listmaker'. X-Git-Tag: v2.0b1~253 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b59290f5b2e7f023364ffe01164f4495461e8472;p=python Fix allowable node-types for assignment, need to add 'listmaker'. (This fix is a bit broken, just as the test already was: the test for testlist and listmaker are done always, whereas the test for exprlist and the actual abort() are only done if Py_DEBUG is defined. Suggestions welcome, I guess ;) --- diff --git a/Python/compile.c b/Python/compile.c index c761e5eee6..0bfae14994 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -1959,7 +1959,7 @@ static void com_assign_sequence(struct compiling *c, node *n, int assigning) { int i; - if (TYPE(n) != testlist) + if (TYPE(n) != testlist && TYPE(n) != listmaker) REQ(n, exprlist); if (assigning) { i = (NCH(n)+1)/2;