summaryrefslogtreecommitdiff
path: root/Objects/floatobject.c
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-08-18 01:05:25 +0000
committerGregory P. Smith <greg@mad-scientist.com>2008-08-18 01:05:25 +0000
commitd8fa68b575338e4e46d32ec8ebf16bd5c796e471 (patch)
treec897ce918356602c78ff4944147ecd681eb6ff0e /Objects/floatobject.c
parente8d0bf9160440d585663aa9f66e820ccf3e1ebf5 (diff)
downloadcpython-git-d8fa68b575338e4e46d32ec8ebf16bd5c796e471.tar.gz
fix cut and paste error in a comment
Diffstat (limited to 'Objects/floatobject.c')
-rw-r--r--Objects/floatobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 4478168a46..8cebc9f159 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;