summaryrefslogtreecommitdiffstats
path: root/Objects/floatobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/floatobject.c')
-rw-r--r--Objects/floatobject.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 7f7f507..6f5b625 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -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 */
+}