From: Victor Stinner Date: Tue, 12 Nov 2013 16:18:51 +0000 (+0100) Subject: Issue #19466: Fix typo. Patch written by Vajrasky Kok. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dcf17f8a553f51fc77d6bb72f4563f625af0d639;p=python Issue #19466: Fix typo. Patch written by Vajrasky Kok. --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 78942880e4..8a59169d4f 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -581,7 +581,7 @@ Py_Finalize(void) other threads to call objects destructor. Destructors will be called in the current Python thread. Since _Py_Finalizing has been set, no other Python threads can lock the GIL at this point (if they try, they will - exit immediatly). */ + exit immediately). */ _PyThreadState_DeleteExcept(tstate); /* Collect garbage. This may call finalizers; it's nice to call these