diff options
| -rw-r--r-- | Python/compile.c | 2 | 
1 files changed, 1 insertions, 1 deletions
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;  | 
