diff options
| author | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-03-29 00:10:44 +0000 |
|---|---|---|
| committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-03-29 00:10:44 +0000 |
| commit | 6daa9628829a8b6e17f1d50eb658c9cb37294cc4 (patch) | |
| tree | f810657c254b91b26056d0144a06effa732d9bfd /Python/compile.c | |
| parent | c12df52102c4c57cc5b5f96f4fbaee103cf0b22e (diff) | |
| download | cpython-6daa9628829a8b6e17f1d50eb658c9cb37294cc4.tar.gz | |
remove reference (vestigal) to CALL_FUNCTION_STAR
Diffstat (limited to 'Python/compile.c')
| -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; |
