mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
remove reference (vestigal) to CALL_FUNCTION_STAR
This commit is contained in:
parent
a403d7d390
commit
e4fb958fc2
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue