Issue #19466: Fix typo. Patch written by Vajrasky Kok.

This commit is contained in:
Victor Stinner 2013-11-12 17:18:51 +01:00
parent 45956b9a33
commit dcf17f8a55
1 changed files with 1 additions and 1 deletions

View File

@ -581,7 +581,7 @@ Py_Finalize(void)
other threads to call objects destructor. Destructors will be called in other threads to call objects destructor. Destructors will be called in
the current Python thread. Since _Py_Finalizing has been set, no other 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 Python threads can lock the GIL at this point (if they try, they will
exit immediatly). */ exit immediately). */
_PyThreadState_DeleteExcept(tstate); _PyThreadState_DeleteExcept(tstate);
/* Collect garbage. This may call finalizers; it's nice to call these /* Collect garbage. This may call finalizers; it's nice to call these