From e4fb958fc2b56376f28dcd8eb776e6ba46416fcb Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Wed, 29 Mar 2000 00:10:44 +0000 Subject: [PATCH] remove reference (vestigal) to CALL_FUNCTION_STAR --- Python/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1