diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-05-05 08:12:42 +0200 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-05-05 08:12:42 +0200 |
commit | 2fbf6d1137a0bb3915acba8eb1f43c11d353205a (patch) | |
tree | 5ad80f2979cb1e950a8c3c59847ee7ed00280a40 /Python/pythonrun.c | |
parent | ffa2ce77300628e4a4ddbacd76e2119adee0f273 (diff) | |
download | cpython-2fbf6d1137a0bb3915acba8eb1f43c11d353205a.tar.gz |
Fix crash caused by 8c1385205a35
(thanks Arfrever for reporting).
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index ddda4a4cd0..9ef653b57a 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -558,6 +558,9 @@ Py_Finalize(void) /* Destroy the database used by _PyImport_{Fixup,Find}Extension */ _PyImport_Fini(); + /* Cleanup typeobject.c's internal caches. */ + _PyType_Fini(); + /* unload faulthandler module */ _PyFaulthandler_Fini(); @@ -578,7 +581,7 @@ Py_Finalize(void) _Py_PrintReferences(stderr); #endif /* Py_TRACE_REFS */ - /* Clear interpreter state */ + /* Clear interpreter state and all thread states. */ PyInterpreterState_Clear(interp); /* Now we decref the exception classes. After this point nothing @@ -594,10 +597,6 @@ Py_Finalize(void) _PyGILState_Fini(); #endif /* WITH_THREAD */ - /* Delete current thread */ - PyThreadState_Swap(NULL); - PyInterpreterState_Delete(interp); - /* Sundry finalizers */ PyMethod_Fini(); PyFrame_Fini(); @@ -611,11 +610,14 @@ Py_Finalize(void) PyFloat_Fini(); PyDict_Fini(); PySlice_Fini(); - _PyType_Fini(); /* Cleanup Unicode implementation */ _PyUnicode_Fini(); + /* Delete current thread. After this, many C API calls become crashy. */ + PyThreadState_Swap(NULL); + PyInterpreterState_Delete(interp); + /* reset file system default encoding */ if (!Py_HasFileSystemDefaultEncoding && Py_FileSystemDefaultEncoding) { free((char*)Py_FileSystemDefaultEncoding); |