[Python-3000-checkins] r65797 - python/branches/py3k/Objects/floatobject.c

gregory.p.smith python-3000-checkins at python.org
Mon Aug 18 03:05:25 CEST 2008


Author: gregory.p.smith
Date: Mon Aug 18 03:05:25 2008
New Revision: 65797

Log:
fix cut and paste error in a comment


Modified:
   python/branches/py3k/Objects/floatobject.c

Modified: python/branches/py3k/Objects/floatobject.c
==============================================================================
--- python/branches/py3k/Objects/floatobject.c	(original)
+++ python/branches/py3k/Objects/floatobject.c	Mon Aug 18 03:05:25 2008
@@ -1918,7 +1918,7 @@
 	PyFloatObject *p;
 	PyFloatBlock *list, *next;
 	int i;
-	int u;			/* remaining unfreed ints per block */
+	int u;			/* remaining unfreed floats per block */
 	int freelist_size = 0;
 
 	list = block_list;


More information about the Python-3000-checkins mailing list