Added _Fini() routines to free up some memory

This commit is contained in:
Guido van Rossum 1997-08-05 02:16:08 +00:00
parent 971a7aaeac
commit fbbd57e4ca
3 changed files with 47 additions and 1 deletions

View file

@ -590,3 +590,9 @@ PyTypeObject PyFloat_Type = {
0, /*tp_as_mapping*/
(hashfunc)float_hash, /*tp_hash*/
};
void
PyFloat_Fini()
{
/* XXX Alas, the free list is not easily and safely freeable */
}