[Python-checkins] python/dist/src/Objects floatobject.c, 2.128, 2.129

mwh at users.sourceforge.net mwh at users.sourceforge.net
Thu Feb 26 08:16:06 EST 2004


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

Modified Files:
	floatobject.c 
Log Message:
Oops, didn't mean to commit the removal of float_compare!


Index: floatobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/floatobject.c,v
retrieving revision 2.128
retrieving revision 2.129
diff -C2 -d -r2.128 -r2.129
*** floatobject.c	26 Feb 2004 12:33:09 -0000	2.128
--- floatobject.c	26 Feb 2004 13:16:03 -0000	2.129
***************
*** 853,857 ****
  	0,					/* tp_getattr */
  	0,					/* tp_setattr */
! 	0, 		/* tp_compare */
  	(reprfunc)float_repr,			/* tp_repr */
  	&float_as_number,			/* tp_as_number */
--- 853,857 ----
  	0,					/* tp_getattr */
  	0,					/* tp_setattr */
! 	(cmpfunc)float_compare, 		/* tp_compare */
  	(reprfunc)float_repr,			/* tp_repr */
  	&float_as_number,			/* tp_as_number */




More information about the Python-checkins mailing list