Discussion:
[Python-3000-checkins] r65797 - python/branches/py3k/Objects/floatobject.c
gregory.p.smith
2008-08-18 01:05:25 UTC
Permalink
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;

Loading...