[Python-checkins] CVS: python/dist/src/Python ceval.c,2.210,2.211

Thomas Wouters python-dev@python.org
Wed, 11 Oct 2000 16:26:15 -0700


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

Modified Files:
	ceval.c 
Log Message:

Do a better job at staying on-screen :P (Sorry, it's late here.) I'm
assuming here that the ANSI-C adjacent-string-concatenation technique is
allowable, now that Python requires an ANSI C compiler. 



Index: ceval.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v
retrieving revision 2.210
retrieving revision 2.211
diff -C2 -r2.210 -r2.211
*** ceval.c	2000/10/11 23:20:09	2.210
--- ceval.c	2000/10/11 23:26:11	2.211
***************
*** 776,780 ****
  				continue;
  			default:
! 				Py_FatalError("invalid argument to DUP_TOPX (bytecode corruption?)");
  			}
  			break;
--- 776,781 ----
  				continue;
  			default:
! 				Py_FatalError("invalid argument to DUP_TOPX"
! 					      " (bytecode corruption?)");
  			}
  			break;