From: Jeremy Hylton Date: Wed, 29 Mar 2000 00:10:44 +0000 (+0000) Subject: remove reference (vestigal) to CALL_FUNCTION_STAR X-Git-Tag: v1.6a1~120 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4fb958fc2b56376f28dcd8eb776e6ba46416fcb;p=python remove reference (vestigal) to CALL_FUNCTION_STAR --- diff --git a/Python/compile.c b/Python/compile.c index 1eed7c06b2..5aaf15e15f 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -1222,7 +1222,7 @@ com_call_function(c, n) "more than 255 arguments"); } if (star_flag || starstar_flag) - opcode = CALL_FUNCTION_STAR - 1 + + opcode = CALL_FUNCTION_VAR - 1 + star_flag + (starstar_flag << 1); else opcode = CALL_FUNCTION;