[Python-checkins] python/dist/src/Objects intobject.c,2.109,2.110

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Sat Jun 5 15:49:14 EDT 2004


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

Modified Files:
	intobject.c 
Log Message:
Reword message

Index: intobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/intobject.c,v
retrieving revision 2.109
retrieving revision 2.110
diff -C2 -d -r2.109 -r2.110
*** intobject.c	5 Jun 2004 19:29:41 -0000	2.109
--- intobject.c	5 Jun 2004 19:49:12 -0000	2.110
***************
*** 929,933 ****
  		if (!PyLong_Check(tmp)) {
  			PyErr_SetString(PyExc_ValueError,
! 					"value must be convertable to an int");
  			Py_DECREF(tmp);
  			return NULL;
--- 929,933 ----
  		if (!PyLong_Check(tmp)) {
  			PyErr_SetString(PyExc_ValueError,
! 					"value can't be converted to int");
  			Py_DECREF(tmp);
  			return NULL;




More information about the Python-checkins mailing list