If you think I've forgotten something, now is a good
time to howl (although I won't read the howl for a good
few hours 'cause I'm going home).
backport lemburg's checkin of
revision 2.158 of pythonrun.c
Move Unicode finalization further down in the chain.
Fixes bug #525620.
/* Disable signal handling */
PyOS_FiniInterrupts();
-#ifdef Py_USING_UNICODE
- /* Cleanup Unicode implementation */
- _PyUnicode_Fini();
-#endif
-
/* Cleanup Codec registry */
_PyCodecRegistry_Fini();
PyInt_Fini();
PyFloat_Fini();
+#ifdef Py_USING_UNICODE
+ /* Cleanup Unicode implementation */
+ _PyUnicode_Fini();
+#endif
+
/* XXX Still allocated:
- various static ad-hoc pointers to interned strings
- int and float free list blocks