[Python-checkins] python/dist/src/Objects intobject.c, 2.105.8.1, 2.105.8.2

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Sat Jun 5 15:30:32 EDT 2004


Update of /cvsroot/python/python/dist/src/Objects
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27563

Modified Files:
      Tag: release23-maint
	intobject.c 
Log Message:
Fix exception wording

Index: intobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/intobject.c,v
retrieving revision 2.105.8.1
retrieving revision 2.105.8.2
diff -C2 -d -r2.105.8.1 -r2.105.8.2
*** intobject.c	8 Feb 2004 18:56:07 -0000	2.105.8.1
--- intobject.c	5 Jun 2004 19:30:29 -0000	2.105.8.2
***************
*** 947,951 ****
  		if (!PyLong_Check(tmp)) {
  			PyErr_SetString(PyExc_ValueError,
! 					"value must convertable to an int");
  			return NULL;
  		}
--- 947,951 ----
  		if (!PyLong_Check(tmp)) {
  			PyErr_SetString(PyExc_ValueError,
! 					"value must be convertable to an int");
  			return NULL;
  		}




More information about the Python-checkins mailing list