[Python-checkins] CVS: python/dist/src/Python compile.c,2.101,2.102

Jeremy Hylton python-dev@python.org
Tue, 28 Mar 2000 19:10:46 -0500


Update of /projects/cvsroot/python/dist/src/Python
In directory goon.cnri.reston.va.us:/home/jhylton/python/src/Python

Modified Files:
	compile.c 
Log Message:
remove reference (vestigal) to CALL_FUNCTION_STAR



Index: compile.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Python/compile.c,v
retrieving revision 2.101
retrieving revision 2.102
diff -C2 -r2.101 -r2.102
*** compile.c	2000/03/28 23:49:16	2.101
--- compile.c	2000/03/29 00:10:44	2.102
***************
*** 1223,1227 ****
  		}
  		if (star_flag || starstar_flag)
! 		    opcode = CALL_FUNCTION_STAR - 1 + 
  			star_flag + (starstar_flag << 1);
  		else
--- 1223,1227 ----
  		}
  		if (star_flag || starstar_flag)
! 		    opcode = CALL_FUNCTION_VAR - 1 + 
  			star_flag + (starstar_flag << 1);
  		else