[Python-checkins] CVS: python/dist/src/Objects floatobject.c,2.88,2.89 intobject.c,2.66,2.67

Guido van Rossum gvanrossum@users.sourceforge.net
Wed, 29 Aug 2001 20:09:33 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv25993

Modified Files:
	floatobject.c intobject.c 
Log Message:
Fix typo: double semicolons.


Index: floatobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/floatobject.c,v
retrieving revision 2.88
retrieving revision 2.89
diff -C2 -d -r2.88 -r2.89
*** floatobject.c	2001/08/29 15:47:46	2.88
--- floatobject.c	2001/08/30 03:09:31	2.89
***************
*** 660,664 ****
  		return NULL;
  	assert(PyFloat_Check(tmp));
! 	new = type->tp_alloc(type, 0);;
  	if (new == NULL)
  		return NULL;
--- 660,664 ----
  		return NULL;
  	assert(PyFloat_Check(tmp));
! 	new = type->tp_alloc(type, 0);
  	if (new == NULL)
  		return NULL;

Index: intobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/intobject.c,v
retrieving revision 2.66
retrieving revision 2.67
diff -C2 -d -r2.66 -r2.67
*** intobject.c	2001/08/29 15:47:46	2.66
--- intobject.c	2001/08/30 03:09:31	2.67
***************
*** 835,839 ****
  		return NULL;
  	assert(PyInt_Check(tmp));
! 	new = type->tp_alloc(type, 0);;
  	if (new == NULL)
  		return NULL;
--- 835,839 ----
  		return NULL;
  	assert(PyInt_Check(tmp));
! 	new = type->tp_alloc(type, 0);
  	if (new == NULL)
  		return NULL;