summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Python/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 1eed7c0..5aaf15e 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;