Files
cpython/Include
Raymond Hettinger 8f8839e10a Remove the freelist scheme for setobjects.
The setobject freelist was consuming memory but not providing much value.
Even when a freelisted setobject was available, most of the setobject
fields still needed to be initialized and the small table still required
a memset().  This meant that the custom freelisting scheme for sets was
providing almost no incremental benefit over the default Python freelist
scheme used by _PyObject_Malloc() in Objects/obmalloc.c.
2013-09-07 20:26:50 -07:00
..
2011-10-15 16:38:20 +02:00
2012-11-12 20:24:09 +01:00
2011-03-16 11:35:38 +02:00
2012-10-24 08:21:52 -07:00