Deallocate content of the dict free list on interpreter shutdown
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index f5465c5..ec31af1 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -473,6 +473,7 @@
 	PyString_Fini();
 	PyInt_Fini();
 	PyFloat_Fini();
+	PyDict_Fini();
 
 #ifdef Py_USING_UNICODE
 	/* Cleanup Unicode implementation */