mirror of https://github.com/python/cpython
remove reference (vestigal) to CALL_FUNCTION_STAR
This commit is contained in:
parent
a403d7d390
commit
e4fb958fc2
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue