diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-20 21:29:37 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-20 21:29:37 (GMT) |
commit | efb60c0ceba425dc2bc602f615a75271f264e0a2 (patch) | |
tree | 2adfe37ac6041184dc938525187e90b47fb4335d /Modules | |
parent | a7a52ab7ee58be0afca3a7763fffc928dcf5459d (diff) | |
download | cpython-efb60c0ceba425dc2bc602f615a75271f264e0a2.zip cpython-efb60c0ceba425dc2bc602f615a75271f264e0a2.tar.gz cpython-efb60c0ceba425dc2bc602f615a75271f264e0a2.tar.bz2 |
Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which
fixes the problem of some exceptions being thrown at shutdown when the
interpreter is killed. Patch by Adam Olsen.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/main.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/Modules/main.c b/Modules/main.c index 014ea5f..1511dd9 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -222,33 +222,6 @@ static int RunMainFromImporter(char *filename) } -/* Wait until threading._shutdown completes, provided - the threading module was imported in the first place. - The shutdown routine will wait until all non-daemon - "threading" threads have completed. */ -#include "abstract.h" -static void -WaitForThreadShutdown(void) -{ -#ifdef WITH_THREAD - PyObject *result; - PyThreadState *tstate = PyThreadState_GET(); - PyObject *threading = PyMapping_GetItemString(tstate->interp->modules, - "threading"); - if (threading == NULL) { - /* threading not imported */ - PyErr_Clear(); - return; - } - result = PyObject_CallMethod(threading, "_shutdown", ""); - if (result == NULL) - PyErr_WriteUnraisable(threading); - else - Py_DECREF(result); - Py_DECREF(threading); -#endif -} - /* Main program */ int @@ -624,8 +597,6 @@ Py_Main(int argc, char **argv) sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0; } - WaitForThreadShutdown(); - Py_Finalize(); #ifdef RISCOS if (Py_RISCOSWimpFlag) |