[Python-checkins] CVS: python/dist/src/Python compile.c,2.135,2.136

Thomas Wouters python-dev@python.org
Sun, 27 Aug 2000 12:01:37 -0700


Update of /cvsroot/python/python/dist/src/Python
In directory slayer.i.sourceforge.net:/tmp/cvs-serv22946/Python

Modified Files:
	compile.c 
Log Message:

Oops, one pop too many.



Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.135
retrieving revision 2.136
diff -C2 -r2.135 -r2.136
*** compile.c	2000/08/25 05:41:11	2.135
--- compile.c	2000/08/27 19:01:33	2.136
***************
*** 1917,1921 ****
  	com_push(c, 1);
  	com_addopname(c, LOAD_ATTR, n);
- 	com_pop(c, 1);
  	com_node(c, augn);
  	com_addbyte(c, opcode);
--- 1917,1920 ----