summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-08-18 01:05:25 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2008-08-18 01:05:25 (GMT)
commitd8fa68b575338e4e46d32ec8ebf16bd5c796e471 (patch)
treec897ce918356602c78ff4944147ecd681eb6ff0e
parente8d0bf9160440d585663aa9f66e820ccf3e1ebf5 (diff)
downloadcpython-d8fa68b575338e4e46d32ec8ebf16bd5c796e471.zip
cpython-d8fa68b575338e4e46d32ec8ebf16bd5c796e471.tar.gz
cpython-d8fa68b575338e4e46d32ec8ebf16bd5c796e471.tar.bz2
fix cut and paste error in a comment
-rw-r--r--Objects/floatobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 4478168..8cebc9f 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -1918,7 +1918,7 @@ PyFloat_ClearFreeList(void)
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;