diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-03-29 00:10:44 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-03-29 00:10:44 (GMT) |
commit | e4fb958fc2b56376f28dcd8eb776e6ba46416fcb (patch) | |
tree | 066b01d9717a3a14a095cbd164cc28385902f6c2 | |
parent | a403d7d390e393063c5e378bc64ec5e06de6fba8 (diff) | |
download | cpython-e4fb958fc2b56376f28dcd8eb776e6ba46416fcb.zip cpython-e4fb958fc2b56376f28dcd8eb776e6ba46416fcb.tar.gz cpython-e4fb958fc2b56376f28dcd8eb776e6ba46416fcb.tar.bz2 |
remove reference (vestigal) to CALL_FUNCTION_STAR
-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 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; |