commit | daa06544c81db02d5a7298dca07ac17a8ca5214e | [log] [tgz] |
---|---|---|
author | Kristján Valur Jónsson <kristjan@ccpgames.com> | Fri Mar 30 09:18:15 2012 +0000 |
committer | Kristján Valur Jónsson <kristjan@ccpgames.com> | Fri Mar 30 09:18:15 2012 +0000 |
tree | 2ff553dac392e8de7e4da46cfbf65c71fa714d7e | |
parent | c1d9869cb997b3ad85c50fbce65528ffccea4ce4 [diff] |
Issue #14435: Remove special block allocation code from floatobject.c PyFloatObjects are now allocated using PyObject_MALLOC like all other internal types, but maintain a limited freelist of objects at hand for performance. This will result in more consistent memory usage by Python.