[Python-checkins] CVS: python/dist/src/Python ceval.c,2.173,2.174

Guido van Rossum python-dev@python.org
Fri, 31 Mar 2000 08:52:32 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Python
In directory eric:/projects/python/develop/guido/src/Python

Modified Files:
	ceval.c 
Log Message:
Thomas Heller fixes a typo in an error message.


Index: ceval.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Python/ceval.c,v
retrieving revision 2.173
retrieving revision 2.174
diff -C2 -r2.173 -r2.174
*** ceval.c	2000/03/31 01:22:54	2.173
--- ceval.c	2000/03/31 13:52:29	2.174
***************
*** 2775,2779 ****
  	if (!PyString_Check(name)) {
  		PyErr_SetString(PyExc_SystemError,
! 				"build_class witn non-string name");
  		return NULL;
  	}
--- 2775,2779 ----
  	if (!PyString_Check(name)) {
  		PyErr_SetString(PyExc_SystemError,
! 				"build_class with non-string name");
  		return NULL;
  	}