Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e4fb958

Browse files
committed
remove reference (vestigal) to CALL_FUNCTION_STAR
1 parent a403d7d commit e4fb958

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/compile.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1222,7 +1222,7 @@ com_call_function(c, n)
12221222
"more than 255 arguments");
12231223
}
12241224
if (star_flag || starstar_flag)
1225-
opcode = CALL_FUNCTION_STAR - 1 +
1225+
opcode = CALL_FUNCTION_VAR - 1 +
12261226
star_flag + (starstar_flag << 1);
12271227
else
12281228
opcode = CALL_FUNCTION;

0 commit comments

Comments
 (0)