diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-08-18 01:05:25 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-08-18 01:05:25 (GMT) |
commit | d8fa68b575338e4e46d32ec8ebf16bd5c796e471 (patch) | |
tree | c897ce918356602c78ff4944147ecd681eb6ff0e | |
parent | e8d0bf9160440d585663aa9f66e820ccf3e1ebf5 (diff) | |
download | cpython-d8fa68b575338e4e46d32ec8ebf16bd5c796e471.zip cpython-d8fa68b575338e4e46d32ec8ebf16bd5c796e471.tar.gz cpython-d8fa68b575338e4e46d32ec8ebf16bd5c796e471.tar.bz2 |
fix cut and paste error in a comment
-rw-r--r-- | Objects/floatobject.c | 2 |
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; |