summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2000-03-29 00:10:44 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2000-03-29 00:10:44 (GMT)
commite4fb958fc2b56376f28dcd8eb776e6ba46416fcb (patch)
tree066b01d9717a3a14a095cbd164cc28385902f6c2 /Python/compile.c
parenta403d7d390e393063c5e378bc64ec5e06de6fba8 (diff)
downloadcpython-e4fb958fc2b56376f28dcd8eb776e6ba46416fcb.zip
cpython-e4fb958fc2b56376f28dcd8eb776e6ba46416fcb.tar.gz
cpython-e4fb958fc2b56376f28dcd8eb776e6ba46416fcb.tar.bz2
remove reference (vestigal) to CALL_FUNCTION_STAR
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c2
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;